.elementor-1332 .elementor-element.elementor-element-dc80133{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1332 .elementor-element.elementor-element-e13cc34{padding:0px 0px 0px 0px;}.elementor-1332 .elementor-element.elementor-element-bade58e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e13cc34 */.about-page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://www.daynightboxcricket.in/wp-content/uploads/2026/06/Box-slider01.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax feel */
    padding: 150px 20px 80px;
}

/* ── OVERLAY — 3 layers for deep shade on bright images ──
   Layer 1 : solid dark base        (darkens the whole image)
   Layer 2 : radial vignette        (darkens edges, esp. top & bottom)
   Layer 3 : bottom gradient        (extra shade under the text)
   ─────────────────────────────────────────────────────── */
.about-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        /* layer 3 — bottom gradient so text has dark floor */
        linear-gradient(
            to top,
            rgba(4, 29, 56, 0.75) 0%,
            transparent 50%
        ),
        /* layer 2 — radial vignette darkens corners & edges */
        radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(2, 15, 30, 0.65) 100%
        ),
        /* layer 1 — base dark wash over entire image */
        linear-gradient(
            rgba(4, 29, 56, 0.78),
            rgba(4, 29, 56, 0.72)
        );
}

/* ── CONTENT ── */
.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

/* ── TAG ── */
.about-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.45);
    color: #00d084;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    /* subtle glow so tag pops on bright bg */
    filter: drop-shadow(0 2px 8px rgba(0, 208, 132, 0.35));
}

/* ── HEADING ── */
.about-banner-content h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 800;
    /* multi-layer shadow for legibility on any bg brightness */
    text-shadow:
        0 2px 4px  rgba(0, 0, 0, 0.60),
        0 4px 16px rgba(0, 0, 0, 0.50),
        0 8px 40px rgba(0, 0, 0, 0.40);
}

/* ── PARAGRAPH ── */
.about-banner-content p {
    color: #e8edf2;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
    /* lighter shadow so paragraph stays readable */
    text-shadow:
        0 1px 3px  rgba(0, 0, 0, 0.70),
        0 2px 12px rgba(0, 0, 0, 0.50);
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .about-page-banner {
        min-height: 380px;
        padding: 110px 25px 70px;
        background-attachment: scroll; /* fixed causes jank on tablet */
    }
}

/* ================================
   MOBILE  ( ≤ 767px )
   ================================ */
@media (max-width: 767px) {

```
.about-page-banner {

    min-height: 380px;

    padding: 150px 20px 60px;

    background-attachment: scroll;

}

.about-banner-content {

    max-width: 100%;

}

.about-tag {

    font-size: 12px;

    padding: 8px 16px;

    margin-bottom: 15px;

}

.about-banner-content h1 {

    font-size: 32px;

    line-height: 1.1;

}

.about-banner-content p {

    font-size: 15px;

    line-height: 1.7;

}
```

}


/* ================================
   SMALL MOBILE  ( ≤ 480px )
   ================================ */
@media (max-width: 480px) {

```
.about-page-banner {

    min-height: 340px;

    padding: 180px 15px 50px;

}

.about-banner-content h1 {

    font-size: 28px;
    padding-top: 20px;

}

.about-banner-content p {

    font-size: 14px;

}
```

}
.about-banner-content {

```
position: relative;

z-index: 2;

max-width: 850px;

padding-top: 20px;
```

}/* End custom CSS */