/* ============================================================
   Brockwell Elementor Widgets — widgets.css v1.0
   ============================================================ */

/* ── Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

/* ============================================================
   SECTION HEADING WIDGET
   ============================================================ */
.bwe-sh-wrap {
    font-family: 'Poppins', sans-serif;
}

/* Tag / Badge */
.bwe-sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47, 111, 47, 0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Pulse dot */
.bwe-sh-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    flex-shrink: 0;
    animation: bweShPulse 2s infinite;
}

@keyframes bweShPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.75); }
}

/* Main heading */
.bwe-sh-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1.2;
    margin: 0 0 14px;
}

.bwe-sh-title em {
    font-style: italic;
    color: #2F6F2F;
}

/* Subtitle */
.bwe-sh-subtitle {
    font-size: 1rem;
    color: #6E625A;
    line-height: 1.82;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FAQ ACCORDION WIDGET
   ============================================================ */

/* List wrapper */
.bwe-faq-list {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.bwe-faq-item {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}

/* Active card */
.bwe-faq-item.bwe-open {
    border-color: #2F6F2F;
    box-shadow: 0 4px 20px rgba(47,111,47,.08);
}

/* Question row */
.bwe-faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: .92rem;
    color: #2B2B2B;
    transition: background .25s ease, color .25s ease;
    gap: 16px;
    user-select: none;
    -webkit-user-select: none;
}

.bwe-faq-q:focus-visible {
    outline: 2px solid #2F6F2F;
    outline-offset: -2px;
}

/* Question text — takes all space, pushes icon to right */
.bwe-faq-text {
    flex: 1;
    min-width: 0;
}

/* Active question */
.bwe-faq-item.bwe-open .bwe-faq-q {
    color: #2F6F2F;
}

/* ── Arrow icon circle ── */
.bwe-arrow {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(47,111,47,.07);
    flex-shrink: 0;
    transition: background .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.bwe-faq-item.bwe-open .bwe-arrow {
    background: #2F6F2F;
}

/* SVG inside icons */
.bwe-arrow svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    transition: stroke .25s ease;
}

.bwe-faq-item:not(.bwe-open) .bwe-arrow svg { stroke: #2F6F2F; }
.bwe-faq-item.bwe-open       .bwe-arrow svg { stroke: #ffffff; }

/* ── Answer container — smooth max-height + fade-slide ── */
.bwe-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Answer inner — subtle slide-up fade when opening */
.bwe-faq-a-inner {
    padding: 0 24px 20px;
    font-size: .88rem;
    color: #6E625A;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease .1s, transform .3s ease .1s;
}

.bwe-faq-item.bwe-open .bwe-faq-a-inner {
    opacity: 1;
    transform: translateY(0);
}

.bwe-faq-a-inner p             { margin: 0 0 10px; }
.bwe-faq-a-inner p:last-child  { margin-bottom: 0; }

/* Responsive */
@media (max-width: 767px) {
    .bwe-faq-q       { padding: 16px 18px; font-size: 0.9rem; gap: 12px; }
    .bwe-faq-a-inner { padding: 0 18px 16px; font-size: 0.88rem; }
    .bwe-arrow       { width: 26px; height: 26px; }
}

/* ============================================================
   SECTION HEADING — WATERMARK
   ============================================================ */
.bwe-sh-title-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.6em 0;          /* vertical room for watermark */
    overflow: clip;             /* clips without affecting layout or scroll */
    overflow-clip-margin: 0px;
}

.bwe-sh-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 6px;
    line-height: 1;
    user-select: none;
}

.bwe-sh-title-wrap .bwe-sh-title {
    position: relative;
    z-index: 1;
}

/* ============================================================
   HERO SECTION WIDGET
   ============================================================ */
.bwe-hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.bwe-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.bwe-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
}

.bwe-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bwe-hero-left {
    max-width: 620px;
}

.bwe-hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 20px;
}

.bwe-hero-heading .bwe-hero-line1,
.bwe-hero-heading .bwe-hero-line2 {
    display: inline;
}

.bwe-hero-heading .bwe-hero-line1::after {
    content: '\A';
    white-space: pre;
}

.bwe-hero-heading em {
    font-style: italic;
    color: #2F6F2F;
}

.bwe-hero-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin: 0 0 30px;
    max-width: 550px;
}

.bwe-hero-cta {
    display: inline-block;
    padding: 16px 36px;
    background: #7CB832;
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.3px;
}

.bwe-hero-cta:hover {
    background: #5a9a1a;
    transform: translateY(-2px);
    color: #fff;
}

/* Right Side */
.bwe-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    position: relative;
}

.bwe-hero-fcard {
    width: 320px;
    height: 260px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5a9a1a 0%, #5a9a1acc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bwe-hero-fcard-icon {
    font-size: 80px;
    color: rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.bwe-hero-fcard-icon i,
.bwe-hero-fcard-icon svg {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: rgba(0, 0, 0, 0.15);
    fill: rgba(0, 0, 0, 0.15);
}

.bwe-hero-fcard-circles span {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bwe-hero-fcard-circles span:nth-child(1) {
    width: 120px; height: 120px; top: -20px; right: -30px;
}
.bwe-hero-fcard-circles span:nth-child(2) {
    width: 80px; height: 80px; bottom: 20px; left: -20px;
}
.bwe-hero-fcard-circles span:nth-child(3) {
    width: 50px; height: 50px; top: 40px; right: 40px;
}

/* Spotlight Card */
.bwe-hero-spotlight {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 26px;
    width: 340px;
    margin-top: -30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}

.bwe-hero-spotlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bwe-hero-spotlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    animation: bweShPulse 2s infinite;
}

.bwe-hero-spotlight-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.bwe-hero-spotlight-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.bwe-hero-spotlight-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* Rating Badge */
.bwe-hero-rating {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 4;
}

.bwe-hero-rating-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bwe-hero-rating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.bwe-hero-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.bwe-hero-star {
    font-size: 1.6rem;
    color: #F5A623;
}

.bwe-hero-rating-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

.bwe-hero-rating-source {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

a.bwe-hero-rating-source:hover {
    color: #F5A623;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .bwe-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bwe-hero-left {
        max-width: 100%;
    }
    .bwe-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .bwe-hero-right {
        align-items: center;
    }
    .bwe-hero-fcard {
        width: 280px;
        height: 220px;
    }
    .bwe-hero-spotlight {
        width: 300px;
    }
    .bwe-hero-inner {
        padding: 60px 24px;
    }
    .bwe-hero-rating {
        position: relative;
        width: 100%;
        max-width: 380px;
        margin: 30px auto 0;
    }
}

@media (max-width: 575px) {
    .bwe-hero-heading {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .bwe-hero-fcard {
        width: 240px;
        height: 180px;
    }
    .bwe-hero-fcard-icon i,
    .bwe-hero-fcard-icon svg {
        font-size: 50px;
        width: 50px;
        height: 50px;
    }
    .bwe-hero-spotlight {
        width: 260px;
        padding: 16px 18px;
    }
    .bwe-hero-inner {
        padding: 40px 16px;
    }
}

/* ============================================================
   TESTIMONIALS MARQUEE WIDGET
   ============================================================ */
.bwe-tm-wrap {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* overflow-x hidden on the section to prevent horizontal scroll from watermark */
.bwe-tm-wrap .bwe-tm-grid-outer {
    overflow: hidden;
}

/* Heading */
.bwe-tm-heading-wrap {
    display: grid;
    place-items: center;
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;      /* clips left/right sides of watermark — intentional design */
}

/* Watermark and heading-inner share the same grid cell → overlap without position:absolute */
.bwe-tm-watermark,
.bwe-tm-heading-inner {
    grid-area: 1 / 1;
}

.bwe-tm-watermark {
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
    /* ⚠️  NO font-family / font-size / font-weight / letter-spacing / text-transform here.
       Those are fully controlled by the Elementor "Watermark Typography" control.
       Only non-typography defaults stay here so Elementor can override cleanly. */
    color: rgba(0, 0, 0, 0.04);
    font-size: clamp(3rem, 10vw, 7rem); /* fallback only — overridden by Elementor */
}

.bwe-tm-heading-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2.2em 0;
}

.bwe-tm-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #2B2B2B;
    margin: 0;
    position: relative;
    z-index: 1;
}

.bwe-tm-heading em {
    font-style: italic;
    color: #6B8E6B;
}

/* Testimonials — tag badge (shared style with .bwe-sh-tag) */
.bwe-tm-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47, 111, 47, 0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bwe-tm-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    flex-shrink: 0;
    animation: bweShPulse 2s infinite;
}

/* Testimonials — subtitle */
.bwe-tm-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6E625A;
    line-height: 1.82;
    font-weight: 300;
    margin: 10px 0 0;
    position: relative;
    z-index: 1;
}

/* Grid */
.bwe-tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bwe-tm-col {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.bwe-tm-col::before,
.bwe-tm-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.bwe-tm-col::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.bwe-tm-col::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.bwe-tm-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Card */
.bwe-tm-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 0;
}

.bwe-tm-card + .bwe-tm-card {
    margin-top: 16px;
}

.bwe-tm-stars {
    color: #F5A623;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bwe-tm-review {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 16px;
}

.bwe-tm-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bwe-tm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.bwe-tm-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    flex-shrink: 0;
}

.bwe-tm-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
}

.bwe-tm-role {
    font-size: 0.75rem;
    color: #999;
}

/* Testimonials Responsive */
@media (max-width: 991px) {
    .bwe-tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bwe-tm-grid .bwe-tm-col:nth-child(3) {
        display: none;
    }
}

@media (max-width: 575px) {
    .bwe-tm-grid {
        grid-template-columns: 1fr;
    }
    .bwe-tm-grid .bwe-tm-col:nth-child(2),
    .bwe-tm-grid .bwe-tm-col:nth-child(3) {
        display: none;
    }
    .bwe-tm-col {
        height: 450px;
    }
}

/* ============================================================
   SERVICES GRID WIDGET
   ============================================================ */
.bwe-sg-wrap {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.bwe-sg-header {
    margin-bottom: 40px;
}

.bwe-sg-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47,111,47,0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bwe-sg-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    animation: bweShPulse 2s infinite;
}

.bwe-sg-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.bwe-sg-heading em {
    font-style: italic;
    color: #2F6F2F;
}

.bwe-sg-subtitle {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}

.bwe-sg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font-family: 'Poppins', sans-serif;
}

/* Classic Template */
.bwe-sg-grid--classic .bwe-sg-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.bwe-sg-grid--classic .bwe-sg-card:hover {
    border-color: #2F6F2F;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* Filled Template */
.bwe-sg-grid--filled .bwe-sg-card {
    background: #f8faf5;
    border: none;
    border-radius: 12px;
    padding: 30px 28px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.bwe-sg-grid--filled .bwe-sg-card:hover {
    background: #f0f5ea;
    box-shadow: 0 8px 24px rgba(47, 111, 47, 0.08);
    transform: translateY(-3px);
}

/* Minimal Template */
.bwe-sg-grid--minimal .bwe-sg-card {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 0;
    padding: 30px 10px;
    transition: border-color 0.3s ease;
}

.bwe-sg-grid--minimal .bwe-sg-card:hover {
    border-bottom-color: #2F6F2F;
}

/* Card Inner */
.bwe-sg-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(47, 111, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s ease;
}

.bwe-sg-icon i,
.bwe-sg-icon svg {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #2F6F2F;
    fill: #2F6F2F;
}

.bwe-sg-card:hover .bwe-sg-icon {
    background: rgba(47, 111, 47, 0.14);
}

.bwe-sg-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.bwe-sg-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.bwe-sg-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2F6F2F;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bwe-sg-link:hover {
    color: #1a4a1a;
    gap: 8px;
}

.bwe-sg-arrow {
    transition: transform 0.2s ease;
}

.bwe-sg-link:hover .bwe-sg-arrow {
    transform: translateX(3px);
}

/* Services Responsive */
@media (max-width: 991px) {
    .bwe-sg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bwe-sg-grid {
        grid-template-columns: 1fr;
    }
}

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

/* ── Section wrapper */
.bwe-about {
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* ── Two-column grid */
.bwe-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bwe-about--img-right .bwe-about-grid {
    direction: rtl;
}
.bwe-about--img-right .bwe-about-grid > * {
    direction: ltr;
}

/* ══════════════════════════════════════
   IMAGE COLUMN
══════════════════════════════════════ */
.bwe-about-img-col {
    position: relative;
}

/* Decorative rotated-border box (top-left of image) */
.bwe-about-img-line {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 2px solid #88BC35;
    border-radius: 12px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Image frame — 5:6 aspect ratio like your original */
.bwe-about-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5 / 6;
    width: 100%;
}

/* Gradient background (visible when no image uploaded) */
.bwe-about-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2F6F2F, #3a7a2a, #5ab35a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

/* Repeating subtle circle pattern overlay */
.bwe-about-img-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23fff' stroke-opacity='.04'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

/* Placeholder cross+circle SVG icon shown when no image */
.bwe-about-placeholder-icon {
    width: 120px;
    height: 120px;
    stroke: rgba(255, 255, 255, 0.12);
    fill: none;
    stroke-width: 0.8;
    position: relative;
    z-index: 1;
}

/* picture takes up the full wrap via absolute positioning */
.bwe-about-img-wrap picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

/* img fills picture via normal flow — NOT position:absolute,
   because <picture> does not reliably establish a containing block
   for absolutely-positioned children in all browsers */
.bwe-about-img-wrap picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Floating badge — white card, bottom-right corner */
.bwe-about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    z-index: 4;
    min-width: 180px;
}

.bwe-about-badge-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2F6F2F;
    line-height: 1;
    display: block;
}

.bwe-about-badge-label {
    font-size: 0.78rem;
    color: #777777;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
══════════════════════════════════════ */
.bwe-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47, 111, 47, 0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bwe-about-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    animation: bweShPulse 2s infinite;
}

.bwe-about-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px;
}

.bwe-about-heading em {
    font-style: italic;
    color: #2F6F2F;
}

.bwe-about-desc {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
    font-weight: 300;
}

.bwe-about-desc p {
    margin: 0 0 14px;
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 300;
}

.bwe-about-desc p:last-child { margin-bottom: 0; }

/* ── Checklist */
.bwe-about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.bwe-about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bwe-about-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(47, 111, 47, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #2F6F2F;
}

.bwe-about-check-icon svg {
    width: 14px;
    height: 14px;
    stroke: #2F6F2F;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bwe-about-check-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333333;
}

/* ══════════════════════════════════════
   ABOUT RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1100px) {
    .bwe-about-grid { gap: 56px; }
}

@media (max-width: 1024px) {
    .bwe-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .bwe-about--img-right .bwe-about-grid { direction: ltr; }

    /* Badge: keep absolute but pull back inside the column boundary */
    .bwe-about-badge {
        right: 0;
        bottom: -20px;
    }

    /* Give col some right padding so badge doesn't clip */
    .bwe-about-img-col {
        padding-right: 0;
        padding-bottom: 44px;
    }
}

@media (max-width: 767px) {
    .bwe-about-grid { gap: 40px; }
    .bwe-about-img-line { display: none; }

    .bwe-about-img-col { padding-bottom: 0; }

    /* Badge flows below image on mobile */
    .bwe-about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
        text-align: center;
        min-width: unset;
        box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    }

    .bwe-about-heading { font-size: clamp(1.5rem, 5.5vw, 2rem); margin-bottom: 14px; }
    .bwe-about-checklist {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-top: 20px;
    }
    .bwe-about-check-item {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .bwe-about-check-text {
        flex: 1;
        white-space: normal;
        word-break: break-word;
    }
    .bwe-about-badge-num { font-size: 2.4rem; }
    .bwe-about-img-wrap {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .bwe-about-img-wrap picture img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .bwe-about-img-wrap { aspect-ratio: 16 / 10; }
    .bwe-about-heading { font-size: 1.4rem; }
    .bwe-about-desc, .bwe-about-desc p { font-size: 0.88rem; }
    .bwe-about-tag { font-size: 0.65rem; padding: 6px 14px; }
    .bwe-about-badge { padding: 18px 24px; }
    .bwe-about-badge-num { font-size: 2rem; }
    .bwe-about-badge-label { font-size: 0.72rem; }
    .bwe-about-check-text { font-size: 0.85rem; }
    .bwe-about-checklist {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
}

/* ============================================================
   COUNTER / STATS WIDGET
   ============================================================ */
.bwe-ctr-wrap {
    font-family: 'Poppins', sans-serif;
    /* No hardcoded background — controlled via Elementor Style tab */
    border-radius: 16px;
    padding: 60px 50px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bwe-ctr-grid {
    display: grid;
    /* Default: 4 columns — overridden by Elementor responsive selector */
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Cards Template */
.bwe-ctr--cards .bwe-ctr-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    min-width: 0;
}

.bwe-ctr--cards .bwe-ctr-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

/* Circles Template */
.bwe-ctr--circles .bwe-ctr-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.bwe-ctr--circles .bwe-ctr-card:hover {
    background: rgba(255,255,255,0.14);
}

.bwe-ctr-icon {
    margin-bottom: 8px;
    color: #88BC35;
    line-height: 1;
}

.bwe-ctr-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #88BC35;
    line-height: 1;
    margin-bottom: 6px;
}

.bwe-ctr-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

/* Counter Responsive — only applies when Elementor responsive selector is NOT overriding */
@media (max-width: 1024px) {
    .bwe-ctr-grid:not([style*="grid-template-columns"]) {
        grid-template-columns: repeat(2, 1fr);
    }
    .bwe-ctr-wrap {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    /* Force 2-col on mobile unless Elementor overrides */
    .bwe-ctr-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    .bwe-ctr-wrap {
        padding: 30px 16px;
    }
    .bwe-ctr--circles .bwe-ctr-card {
        width: 140px;
        height: 140px;
    }
    .bwe-ctr-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .bwe-ctr-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .bwe-ctr-wrap {
        padding: 24px 12px;
    }
    .bwe-ctr-number {
        font-size: 1.4rem;
    }
    .bwe-ctr-title {
        font-size: 0.75rem;
    }
    .bwe-ctr--cards .bwe-ctr-card {
        padding: 20px 12px;
    }
}

/* ============================================================
   TEAM SECTION WIDGET
   ============================================================ */
.bwe-team-wrap {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.bwe-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bwe-team-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px 12px 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.bwe-team-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.bwe-team-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bwe-team-photo {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bwe-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bwe-team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.bwe-team-desg {
    font-size: 0.8rem;
    color: #2F6F2F;
    font-weight: 400;
}

/* Team Responsive */
@media (max-width: 991px) {
    .bwe-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bwe-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .bwe-team-photo {
        height: 180px;
    }
}

/* ============================================================
   BLOG / RECENT POSTS WIDGET
   ============================================================ */
.bwe-blog-wrap {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

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

.bwe-blog-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.bwe-blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.bwe-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bwe-blog-thumb {
    width: calc(100% - 16px);
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #e8e8e8;
    margin: 8px 8px 0;
    border-radius: 12px;
    flex-shrink: 0;
}

.bwe-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bwe-blog-card:hover .bwe-blog-thumb img {
    transform: scale(1.05);
}

.bwe-blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #2F6F2F;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.bwe-blog-body {
    padding: 16px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bwe-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    color: #999;
    font-size: 0.75rem;
}

.bwe-blog-date,
.bwe-blog-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bwe-blog-date::before,
.bwe-blog-time::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2F6F2F;
    display: inline-block;
    flex-shrink: 0;
}

.bwe-blog-meta svg {
    flex-shrink: 0;
}

.bwe-blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 8px;
    transition: color 0.2s ease;
}

.bwe-blog-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

.bwe-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2F6F2F;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bwe-blog-card:hover .bwe-blog-link {
    color: #1a4a1a;
    gap: 8px;
}

.bwe-blog-arrow {
    transition: transform 0.2s ease;
}

.bwe-blog-card:hover .bwe-blog-arrow {
    transform: translateX(3px);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .bwe-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bwe-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FEATURED IN / BRANDS CAROUSEL WIDGET
   ============================================================ */

/* Section wrapper */
.bwe-fi-section {
    background: #ffffff;
    padding: 72px 0;
    border-top: 1px solid rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    position: relative;
}

/* Side-by-side layout */
.bwe-fi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
}

/* Stacked layout */
.bwe-fi-container--stacked {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.bwe-fi-container--stacked .bwe-fi-text {
    max-width: 680px;
    margin: 0 auto;
}

/* Tag */
.bwe-fi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47,111,47,0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.bwe-fi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    flex-shrink: 0;
    animation: bweShPulse 2s infinite;
}

/* Title wrap + watermark */
.bwe-fi-title-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.bwe-fi-watermark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.bwe-fi-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1.2;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.bwe-fi-title em {
    font-style: italic;
    color: #2F6F2F;
}

.bwe-fi-subtitle {
    font-size: 0.88rem;
    color: #6E625A;
    line-height: 1.8;
    font-weight: 300;
    max-width: 300px;
    font-family: 'Poppins', sans-serif;
}

.bwe-fi-container--stacked .bwe-fi-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel */
.bwe-fi-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.bwe-fi-carousel-wrapper::before,
.bwe-fi-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.bwe-fi-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.bwe-fi-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.bwe-fi-carousel-track {
    display: flex;
    width: max-content;
    animation: bweFiScroll 28s linear infinite;
}

.bwe-fi-pause-hover:hover {
    animation-play-state: paused;
}

@keyframes bweFiScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bwe-fi-set {
    display: grid;
    gap: 0;
}

/* Brand cell */
.bwe-fi-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
}

.bwe-fi-cell:hover {
    background: #f7f9f7;
    z-index: 1;
}

.bwe-fi-cell:hover .bwe-fi-logo-wrap {
    transform: scale(1.05);
}

.bwe-fi-logo-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    transition: transform 0.35s ease;
}

.bwe-fi-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: inherit;
}

.bwe-fi-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.bwe-fi-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    white-space: nowrap;
    display: block;
}

.bwe-fi-brand-accent {
    color: #88BC35;
}

.bwe-fi-brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: #6E625A;
    display: block;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 900px) {
    .bwe-fi-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bwe-fi-subtitle {
        max-width: 100%;
    }
}

/* ============================================================
   WORKING PROCESS WIDGET
   ============================================================ */

.bwe-ps-section {
    background: #f7f9f7;
    position: relative;
    overflow: hidden;
}

.bwe-ps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* Section header */
.bwe-ps-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

/* Tag */
.bwe-ps-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47,111,47,0.07);
    color: #2F6F2F;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.bwe-ps-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    flex-shrink: 0;
    animation: bweShPulse 2s infinite;
}

/* Title wrap + watermark */
.bwe-ps-title-wrap {
    position: relative;
    display: inline-block;
}

.bwe-ps-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.bwe-ps-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1.2;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.bwe-ps-title em {
    font-style: italic;
    color: #2F6F2F;
}

.bwe-ps-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #6E625A;
    line-height: 1.8;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}

/* Steps grid */
.bwe-ps-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}

/* Connector line */
.bwe-ps-has-line::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #88BC35 0, #88BC35 8px,
        transparent 8px, transparent 20px
    );
    opacity: 0.4;
    z-index: 0;
}

/* Individual step */
.bwe-ps-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.bwe-ps-icon-wrap {
    position: relative;
    margin-bottom: 28px;
}

/* Circle */
.bwe-ps-circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 2px solid rgba(47,111,47,0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.45s cubic-bezier(.25,.8,.25,1);
    position: relative;
    z-index: 1;
}

.bwe-ps-step:hover .bwe-ps-circle {
    box-shadow: 0 8px 28px rgba(47,111,47,0.32);
    transform: translateY(-6px) scale(1.05);
}

.bwe-ps-circle svg,
.bwe-ps-circle i {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: #2F6F2F;
    stroke: #2F6F2F;
    fill: none;
    stroke-width: 1.6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color 0.45s, stroke 0.45s;
}

/* Badge number */
.bwe-ps-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #88BC35;
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(136,188,53,0.35);
    z-index: 2;
    transition: all 0.45s;
}

.bwe-ps-step:hover .bwe-ps-badge {
    background: #2F6F2F;
    transform: scale(1.15);
}

/* Step text */
.bwe-ps-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 10px;
    transition: color 0.35s;
}

.bwe-ps-step:hover .bwe-ps-step-title {
    color: #2F6F2F;
}

.bwe-ps-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #6E625A;
    line-height: 1.75;
    font-weight: 300;
    max-width: 220px;
    margin: 0 auto;
}

/* CTA */
.bwe-ps-cta {
    text-align: center;
    margin-top: 60px;
}

.bwe-ps-cta-label {
    color: #6E625A;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.bwe-ps-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2F6F2F;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s, gap 0.3s;
    box-shadow: 0 4px 18px rgba(47,111,47,0.22);
}

.bwe-ps-cta-btn:hover {
    background: #1a4a1a;
    box-shadow: 0 6px 24px rgba(47,111,47,0.35);
    gap: 14px;
}

.bwe-ps-cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.bwe-ps-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .bwe-ps-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
    .bwe-ps-has-line::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .bwe-ps-steps {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }
}

/* ============================================================
   BWE WATERMARK — shared across all widgets
   ============================================================ */
.bwe-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(0, 0, 0, 0.04);
    z-index: 0;
}
.bwe-wm-pos--center        { top: 50%;  left: 50%; }
.bwe-wm-pos--top-left      { top: 15%;  left: 20%; }
.bwe-wm-pos--top-center    { top: 15%;  left: 50%; }
.bwe-wm-pos--top-right     { top: 15%;  left: 80%; }
.bwe-wm-pos--bottom-left   { top: 85%;  left: 20%; }
.bwe-wm-pos--bottom-center { top: 85%;  left: 50%; }
.bwe-wm-pos--bottom-right  { top: 85%;  left: 80%; }

/* ============================================================
   WHY CHOOSE US WIDGET
   ============================================================ */

.bwe-wcu-wrap {
    font-family: 'Poppins', sans-serif;
    background: #F2F1EE;
    box-sizing: border-box;
    width: 100%;
    display: block;
    position: relative;
}

.bwe-wcu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 40px;
}

/* ── LEFT COLUMN ──────────────────────────── */
.bwe-wcu-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Tag / Badge */
.bwe-wcu-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(47, 111, 47, 0.07);
    color: #2F6F2F;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.bwe-wcu-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #88BC35;
    display: inline-block;
    flex-shrink: 0;
    animation: bweShPulse 2s infinite;
}

/* Main heading */
.bwe-wcu-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1.2;
    margin: 0 0 16px;
}

.bwe-wcu-heading em {
    font-style: italic;
    color: #2F6F2F;
}

/* Subtitle */
.bwe-wcu-subtitle {
    font-size: 0.95rem;
    color: #6E625A;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 32px;
}

/* ── ITEMS ──────────────────────────────────── */
.bwe-wcu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bwe-wcu-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bwe-wcu-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.bwe-wcu-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: #2F6F2F;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.bwe-wcu-card-body {
    flex: 1;
}

.bwe-wcu-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A2B1A;
    margin: 0 0 6px;
    line-height: 1.4;
}

.bwe-wcu-item-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
}

/* ── RIGHT PANEL ──────────────────────────── */
.bwe-wcu-panel {
    position: relative;
    background: #2F6F2F;
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Panel background image */
.bwe-wcu-panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* object-fit and object-position are managed by Elementor controls */
    border-radius: inherit;
    display: block;
}

/* Shield icon (decorative) */
.bwe-wcu-shield {
    color: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bwe-wcu-shield svg {
    width: 80px;
    height: 80px;
    display: block;
}

/* Tagline */
.bwe-wcu-panel-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 0 30px;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Rating Badge */
.bwe-wcu-rating {
    position: absolute;
    bottom: -14px;
    left: 28px;
    background: #88BC35;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(136, 188, 53, 0.4);
    z-index: 10;
}

.bwe-wcu-rating-score {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.bwe-wcu-rating-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
    .bwe-wcu-inner {
        gap: 36px;
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .bwe-wcu-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 20px 60px;
    }

    .bwe-wcu-panel {
        min-height: 300px;
        margin-bottom: 20px;
    }

    .bwe-wcu-rating {
        bottom: -18px;
        left: 20px;
    }

    .bwe-wcu-heading {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
}

@media (max-width: 480px) {
    .bwe-wcu-inner {
        padding: 40px 16px 56px;
    }

    .bwe-wcu-card {
        padding: 16px 18px;
    }

    .bwe-wcu-num {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.7rem;
    }

    .bwe-wcu-item-title {
        font-size: 0.9rem;
    }
}

/* ============================================================
   GLOBAL RESPONSIVE FIXES — ALL WIDGETS
   Brockwell Widgets v2.3.0
   ============================================================ */

/* ── Base: only truly "flow" images get height:auto
   Widget images (team, blog, about, wcu panel) all live inside
   fixed-height containers and MUST stay at height:100%.
   Keep them out of this reset entirely. */
.bwe-hero img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* These widget images need height:100% (set in their own rules above).
   Only add max-width here so the specific height rules are not overridden. */
.bwe-team-photo img,
.bwe-blog-thumb img,
.bwe-about-img-wrap picture img,
.bwe-wcu-panel-img {
    max-width: 100%;
}

/* Fixed-height image containers stay fluid in width */
.bwe-team-photo,
.bwe-blog-thumb {
    width: 100%;
    box-sizing: border-box;
}

/* Prevent any widget from causing horizontal scroll */
.bwe-hero,
.bwe-about,
.bwe-ctr-wrap,
.bwe-team-wrap,
.bwe-blog-wrap,
.bwe-fi-section,
.bwe-faq-list,
.bwe-tm-wrap,
.bwe-ps-wrap,
.bwe-sh-wrap,
.bwe-wcu-wrap {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {

    /* Hero */
    .bwe-hero-grid {
        grid-template-columns: 1fr;
    }
    .bwe-hero-inner {
        padding: 60px 32px;
    }
    .bwe-hero-left { max-width: 100%; }
    .bwe-hero-right { align-items: center; margin-top: 32px; }
    .bwe-hero-fcard { width: 280px; height: 220px; }
    .bwe-hero-spotlight { width: 300px; }
    .bwe-hero-rating {
        position: relative;
        width: 100%;
        max-width: 340px;
        margin: 24px auto 0;
    }

    /* About */
    .bwe-about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .bwe-about--img-right .bwe-about-grid { direction: ltr; }
    .bwe-about-img-col { padding-bottom: 40px; }
    .bwe-about-badge { right: 0; bottom: 0; }

    /* Counter */
    .bwe-ctr-wrap { padding: 48px 32px; }

    /* Services Grid */
    .bwe-sg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Team */
    .bwe-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Blog */
    .bwe-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Process steps */
    .bwe-ps-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px;
    }
    .bwe-ps-has-line::before { display: none; }
}

/* ── MOBILE (max 767px) ── */
@media (max-width: 767px) {

    /* Hero */
    .bwe-hero { min-height: unset; }
    .bwe-hero-inner { padding: 48px 20px; }
    .bwe-hero-grid { gap: 28px; text-align: center; }
    .bwe-hero-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .bwe-hero-desc { font-size: 0.9rem; margin-left: auto; margin-right: auto; }
    .bwe-hero-cta { padding: 14px 28px; font-size: 0.88rem; }
    .bwe-hero-fcard { width: 240px; height: 180px; }
    .bwe-hero-spotlight { width: 260px; padding: 14px 16px; }
    .bwe-hero-fcard-icon i,
    .bwe-hero-fcard-icon svg { font-size: 50px; width: 50px; height: 50px; }

    /* Section Heading */
    .bwe-sh-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .bwe-sh-subtitle { font-size: 0.9rem; }

    /* About */
    .bwe-about-grid { gap: 32px; }
    .bwe-about-img-col { padding-bottom: 0; }
    .bwe-about-img-wrap { aspect-ratio: 4 / 3; width: 100%; }
    .bwe-about-img-wrap picture img { width: 100% !important; height: 100% !important; object-fit: cover; }
    .bwe-about-img-line { display: none; }
    .bwe-about-badge {
        position: relative;
        bottom: auto; right: auto;
        margin-top: 16px;
        display: inline-block;
        min-width: unset;
    }
    .bwe-about-heading { font-size: clamp(1.4rem, 5.5vw, 2rem); }
    .bwe-about-checklist {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin-top: 20px;
    }
    .bwe-about-check-item {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .bwe-about-check-text {
        flex: 1;
        white-space: normal;
        word-break: break-word;
    }

    /* Counter */
    .bwe-ctr-wrap { padding: 40px 20px; }
    .bwe-ctr-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Services Grid */
    .bwe-sg-grid {
        grid-template-columns: 1fr !important;
    }
    .bwe-sg-card { padding: 20px 18px; }

    /* Team */
    .bwe-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .bwe-team-photo { height: 180px; }
    .bwe-team-name { font-size: 0.88rem; }
    .bwe-team-desg { font-size: 0.75rem; }

    /* Blog */
    .bwe-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bwe-blog-thumb { height: 200px; }
    .bwe-blog-title { font-size: 0.95rem; }

    /* Featured In */
    .bwe-fi-section { padding: 48px 0; }
    .bwe-fi-heading { font-size: clamp(1rem, 5vw, 1.4rem); }

    /* Testimonials */
    .bwe-tm-heading-wrap { margin-bottom: 28px; }

    /* Process Steps */
    .bwe-ps-steps {
        grid-template-columns: 1fr !important;
        gap: 32px 0;
    }

    /* Why Choose Us */
    .bwe-wcu-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 20px 56px;
    }
    .bwe-wcu-panel { min-height: 280px; margin-bottom: 20px; }
    .bwe-wcu-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
    .bwe-wcu-subtitle { font-size: 0.88rem; margin-bottom: 24px; }
    .bwe-wcu-card { padding: 16px 18px; gap: 14px; }
}

/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {

    /* Hero */
    .bwe-hero-inner { padding: 40px 16px; }
    .bwe-hero-fcard { width: 200px; height: 160px; }
    .bwe-hero-spotlight { width: 220px; padding: 12px 14px; }

    /* About */
    .bwe-about-img-wrap { aspect-ratio: 3 / 2; }
    .bwe-about-heading { font-size: 1.4rem; }
    .bwe-about-desc,
    .bwe-about-desc p { font-size: 0.85rem; }
    .bwe-about-badge { padding: 16px 20px; }
    .bwe-about-badge-num { font-size: 2rem; }

    /* Counter */
    .bwe-ctr-wrap { padding: 32px 14px; }
    .bwe-ctr-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
    .bwe-ctr-number { font-size: 1.5rem !important; }

    /* Team — 1 col on very small */
    .bwe-team-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bwe-team-photo { height: 240px; }

    /* Blog */
    .bwe-blog-thumb { height: 180px; }

    /* Services Grid */
    .bwe-sg-card { padding: 16px 14px; }

    /* Why Choose Us */
    .bwe-wcu-inner { padding: 36px 14px 52px; }
    .bwe-wcu-card { padding: 14px 14px; }
    .bwe-wcu-num {
        width: 34px; height: 34px; min-width: 34px;
        font-size: 0.68rem;
    }
    .bwe-wcu-item-title { font-size: 0.88rem; }
    .bwe-wcu-item-desc { font-size: 0.8rem; }
    .bwe-wcu-panel { min-height: 240px; }

    /* FAQ */
    .bwe-faq-q   { font-size: 0.85rem; padding: 14px 14px; gap: 10px; }
    .bwe-arrow   { width: 26px; height: 26px; }
}

/* ── Elementor inner containers — prevent overflow ── */
.elementor-widget-bwe_hero_section .elementor-widget-container,
.elementor-widget-bwe_about_section .elementor-widget-container,
.elementor-widget-bwe_counter_section .elementor-widget-container,
.elementor-widget-bwe_team_section .elementor-widget-container,
.elementor-widget-bwe_blog_section .elementor-widget-container,
.elementor-widget-bwe_services_grid .elementor-widget-container,
.elementor-widget-bwe_why_choose_us .elementor-widget-container,
.elementor-widget-bwe_process_section .elementor-widget-container,
.elementor-widget-bwe_faq_accordion .elementor-widget-container,
.elementor-widget-bwe_testimonials_marquee .elementor-widget-container,
.elementor-widget-bwe_featured_in .elementor-widget-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
