.discover-block .hero-lines {
    opacity: 0.8;
}   


.discover-block .advance-box {
    width: 100%;
    border: 1px solid rgba(136, 136, 136, 0.3);
    margin: 0;
    border-radius: 20px;
    padding: 20px;
    z-index: 2;
    position: relative;
}


@media (min-width:1024px) {
    .discover-block .advance-box {
        border-radius: 20px
    }
}


@media (min-width:1200px) {
    .discover-block .advance-box p {
        font-size: 16px;
        line-height: 1.4
    }
}

@media (min-width:1200px) {
    .discover-block .advance-box .video-box {
        /* width: 152px;
        height: 152px */
    }
}


.discover-block .advance-box .video-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

}

.modal-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: safe center;
    justify-content: safe center;
    padding: 20px;
    z-index: 101;
    overflow: hidden;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s
}

@media (min-width:768px) {
    .modal-popup {
        padding: 30px
    }
}

.modal-popup.modal-slideup {
    opacity: 1;
    visibility: visible
}

.modal-popup.modal-slideup .modal-continer {
    transform: none
}

.modal-popup .modal-close {
    width: 32px;
    height: 32px;
    background: #eef2f2;
    border-radius: 100%;
    position: absolute;
    right: -15px;
    top: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px
}

@media (min-width:768px) {
    .modal-popup .modal-close {
        width: 48px;
        height: 48px;
        right: -20px;
        top: -20px
    }
}

.modal-popup .modal-close:before {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1
}

.modal-popup .modal-close:hover {
    background: #dde0e0
}

.modal-popup .modal-continer {
    width: 100%;
    max-width: 865px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    transform: translateY(100%);
    transition: 0.35s ease-in-out
}

.modal-popup .modal-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-height: 90vh;
    overflow: auto
}

.modal-popup .modal-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 16px
}

.modal-popup .modal-video:before {
    display: block;
    content: "";
    padding-top: 56.6%
}

.modal-popup .modal-video iframe,
.modal-popup .modal-video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0
}




.advance-box .button-play {

    position: absolute;

    left: 50%;

    top: 50%;

    z-index: 2;

    transform: translate(-50%, -50%);

    width: 44px;

    height: 44px;

    border-radius: 100%;

    border: 0;

    cursor: pointer;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e41613;

    box-shadow: 0 0 0 10px rgba(255, 203, 12, 0.2);

    animation: pulseShadow 1.5s infinite;

}

@media (min-width: 1200px) {

    .advance-box .button-play {

        width: 52px;

        height: 52px;

    }

}





.section-compoment-space
{
    padding: 80px 0 !important;
}

.section-compoment-no-bottom-space
{
    padding-bottom: 0 !important;
}


/* Guard: a stray `touch-action: none` on #main (leftover from the saved DOM
   snapshot) disables every touch gesture over the page content, which makes
   the site completely unscrollable on phones/tablets. Descendants that need
   their own value (e.g. the draggable team carousel uses pan-y) are unaffected,
   since touch-action is not inherited. */
#main {
    touch-action: auto !important;
}

/* Desktop nudge for the "Our Business Units" stats block (was an inline
   style="top: 28.25vw" on the element itself). Inline styles beat the
   stylesheet at every width, so it also overrode the <=1100px value of
   top: min(64.722vw, 256.88px) - which pushed the block down far enough that
   .circle-container's overflow:hidden sliced off the last stats line. Scoped
   to desktop, the responsive value applies again below 1100px. */
@media (min-width: 1101px) {
    .component--map .wysiwyg.--xlarge {
        top: 28.25vw;
    }
}

/* ---------------------------------------------------------------------------
   iOS Safari
   --------------------------------------------------------------------------- */

/* iOS re-scales text on rotation unless this is pinned. Nothing in the vendor
   stylesheet sets it, so copy resizes unpredictably when an iPhone is turned
   to landscape. */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* The page footer is the last thing on screen, and viewport-fit=cover (set in
   the viewport meta) lets the home indicator sit on top of it. env() resolves
   to 0 on every device without one, so this is inert elsewhere. */
.site-footer {
    padding-bottom: env(safe-area-inset-bottom);
}

.modal-popup {
    /* Safari drops an `align-items`/`justify-content` declaration whole if it
       does not understand the `safe` keyword, which loses the centring with it
       and leaves the modal stretched. Plain values first as the fallback. */
    align-items: center;
    align-items: safe center;
    justify-content: center;
    justify-content: safe center;

    /* On iOS `100vh` is the LARGE viewport - measured as if the URL bar were
       hidden - so a fixed 100vh overlay is taller than the screen whenever the
       bar is showing: the modal centres too low and its close button, which is
       offset -15px outside the container, can end up off-screen. dvh tracks the
       visible viewport; the 100vh line above it stays as the fallback. */
    height: 100vh;
    height: 100dvh;

    /* Keep the close button clear of the notch in landscape. */
    padding: max(20px, env(safe-area-inset-top))
             max(20px, env(safe-area-inset-right))
             max(20px, env(safe-area-inset-bottom))
             max(20px, env(safe-area-inset-left));
}

@media (min-width: 768px) {
    .modal-popup {
        padding: max(30px, env(safe-area-inset-top))
                 max(30px, env(safe-area-inset-right))
                 max(30px, env(safe-area-inset-bottom))
                 max(30px, env(safe-area-inset-left));
    }
}

.modal-popup .modal-content {
    max-height: 90vh;
    max-height: 90dvh;
    /* Stop a scroll that runs out of room inside the modal from chaining to
       the page behind it - the usual iOS rubber-band-through. */
    overscroll-behavior: contain;
}



.discover-block .advance-box .video-box {

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    line-height: 0;

    cursor: pointer;

}



.discover-block .advance-box .video-box video {

    display: block;

    width: 100%;

    height: auto;

}



.video-controls {

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 2;

}



.advance-box .playPauseBtn {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 44px;

    height: 44px;

    border-radius: 100%;

    border: 0;

    padding: 0;

    cursor: pointer;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e41613;

    pointer-events: auto;

    transition: opacity .25s ease, visibility .25s ease;

}



@media (min-width: 1200px) {

    .advance-box .playPauseBtn { width: 52px; height: 52px; }

}



@keyframes pulseShadow {

    0%   { box-shadow: 0 0 0 0 rgba(228, 22, 19, 0.45); }

    70%  { box-shadow: 0 0 0 18px rgba(228, 22, 19, 0); }

    100% { box-shadow: 0 0 0 0 rgba(228, 22, 19, 0); }

}



.playPauseBtn .icon-pause {

    display: none;

}







.video-box.is-playing .playPauseBtn .icon-play {

    display: none;

}



.video-box.is-playing .playPauseBtn .icon-pause {

    display: block;

}







.video-box.is-playing .playPauseBtn {



    opacity: 0;



    visibility: hidden;



    animation: none;



}







.video-box.is-playing:hover .playPauseBtn,



.video-box.is-playing.show-controls .playPauseBtn,



.video-box.is-playing .playPauseBtn:focus-visible {



    opacity: 1;



    visibility: visible;



}







.video-box:not(.is-playing) .playPauseBtn {



    animation: pulseShadow 1.5s infinite;



}







.playPauseBtn:focus-visible {



    outline: 2px solid #1b1f1f;



    outline-offset: 3px;



}







@media (prefers-reduced-motion: reduce) {



    .video-box:not(.is-playing) .playPauseBtn {

        animation: none;

    }



    .advance-box .playPauseBtn {

        transition: none;

    }



}











/* ===========================================================================

   SCROLL-EXPAND VIDEO

   Sirf layout yahan hai. Sizes JS px mein set karta hai - is liye na calc()

   ki zaroorat hai, na svh/vh ka koi jhagra. iOS Safari par yehi mehfooz hai.

   =========================================================================== */



@media (prefers-reduced-motion: no-preference) and (min-width: 1025px) {



    .scroll-expand {

        padding: 0 !important;   /* .section-compoment-space ka 80px cancel */

    }



    .scroll-expand .se-sticky {

        position: sticky;

        top: 0;

        height: 100vh;    /* fallback */

        height: 100svh;   /* JS isi ko naap kar baqi hisaab karta hai */

        display: flex;

        align-items: center;

        justify-content: center;

        overflow: hidden;

    }



    /* container ki max-width hatai, warna video poori screen tak nahi ja sakti */

    .scroll-expand .container,

    .scroll-expand .container.--xsmall {

        max-width: none;

        width: 100%;

        padding: 0;

        margin: 0;

    }



    .scroll-expand .item {

        width: 100%;

        display: flex;

        justify-content: center;

    }



    .scroll-expand .advance-box {

        box-sizing: border-box;

        will-change: width, height;

    }



    .scroll-expand .advance-box .video-box {

        height: 100%;

    }



    .scroll-expand .advance-box .video-box video {

        width: 100%;

        height: 100%;

        object-fit: cover;

    }

}

 
