
/* ===========================
   ========= WHY BLR =========
   =========================== */

   .why-blr {
    background-color: #ECF9FD;
    padding: 2em 2em;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.why-blr-row {
    background-color: #ECF9FD;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
}

.wbr {
    background-color: #ECF9FD;
    width: 100%;
    padding: 0;
    ;
}

.wbr-p>img {
    padding: 0;
}

.wbr-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 1em 0;
    gap: 2em;
}

.wbr-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: #e6e3e3 !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbr-icon:hover {
    background-color: #03b9e2 !important;
    color: #fff !important;
}

.wbr-icon>img {
    width: 40px;
    height: 40px;
}

.wbr-icon1:hover {
    filter: hue-rotate(270deg);
}

.wbr-info {
    width: 100%;
}

.wbr-info1 {
    font-size: 1.25em;
    font-weight: 700 !important;
}

.wbr-info2 {
    font-size: large;
}

@media (max-width: 990px) {
    .why-blr {
        padding: 2em;
    }

    .wbr1 {
        display: none;
    }

}

@media (max-width: 480px) {
    .why-blr {
        padding: 2em;
    }

    .wbr {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: start;
    }

    .wbr-icon {
        padding: 0 1em;
    }

    .wbr-content {
        display: flex;
        flex-direction: column;
        align-items: start;

    }

    .wbr1 {
        display: none;
    }

}



/* ===========================
   ====== DATA SECURITY ======
   =========================== */

.data-security {
    background-color: #1c365a;
    color: #fff;
}

.ds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 2em;
    text-align: center;
    padding: 5em 0;
}

.ds-head1 {
    margin-bottom: 1em;
}

.ds-platforms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-bottom: 2em;
    padding: 0 1em;
}

.platform-list-item img {
    width: 57px;
    height: auto;
    transition: transform 0.3s ease;
}

.platform-list-item img:hover {
    transform: scale(1.1);
}

.ds-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-btn>a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1em;
}

@media (max-width: 768px) {
    .ds-platforms-list {
        gap: 1.5em;
    }

    .platform-list-item img {
        width: 45px;
    }
}

@media (max-width: 480px) {
    .ds-container {
        padding: 2em;
    }

    .ds-platforms-list {
        gap: 1em;
    }

    .platform-list-item img {
        width: 40px;
    }

    .ds-btn {
        font-size: large;
    }

    .ds-btn>a {
        margin-right: 0;
        padding: 0 1em;
        font-size: medium;

    }
}



/* ===========================
   ======= DATA BANNER =======
   =========================== */
.db-float {
    position: absolute;
    top: -3em;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    border-radius: 2em;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.19);
}

.data-banner-row {
    background-color: #f7f7f7;
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.dbr {
    padding: 1em 3em;
}

.dbr1 {
    text-align: center;
}

.dbr1p {
    color: rgba(220, 53, 59, 1);
    font-size: 2em;
    font-weight: 700;
}

.dbrt {
    font-size: 1.25em;
    font-weight: 700;
}

.banner-data {
    position: relative;

    padding: 5em 2em;
    background-image: url("/assets1/img/bg-1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 50%;
}

.banner-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    padding: 1em;
}

.banner-icon {
    width: 4em;
    margin-right: 1em;
}

.bi-div:hover {
    background-color: #03b9e2;
}

.bi-div {
    height: 60px;
    width: 70px;
    background-color: #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.banner-head {
    font-size: 1.4em;
    font-weight: 700;
}

.banner-content {
    font-size: large;
    font-weight: 400;
}

.banner-content>a {
    color: #01b8ea;
}
.banner-data2{
    margin-top:2em;
}

.bd2-container-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2em;
}
.bd2c-i {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
    object-fit: contain; /* Optional depending on how you want scaling */
}

@media (max-width: 1024px) {
    .db-float {
        position: static;
        transform: none;
        width: 90%;
        margin: 2em auto 0 auto;
        border-radius: 1.5em;
    }


    .banner-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .db-float {
        position: static;
        transform: none;
        width: 90%;
        margin: 2em auto;
        top: auto;
        left: auto;
        border-radius: 1.5em;
    }

    .data-banner-row {
        flex-direction: column;
    }

    .dbr {
        padding: 1em 1.5em;
    }

    .dbr1p {
        font-size: 1.5em;
    }

    .dbrt {
        font-size: 1em;
    }

    .banner-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-icon {
        margin-bottom: 0.5em;
    }

    .banner-head {
        font-size: 1.2em;
    }

    .banner-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .db-float {
        position: static;
        transform: none;
        width: 90%;
        margin: 2em auto;
        top: auto;
        left: auto;
        border-radius: 1.5em;
    }

    .dbr1p {
        font-size: 1.2em;
    }

    .dbrt {
        font-size: 0.95em;
    }
    .banner-data2{
        margin-top:0em;
    }
    
    .bd2-container-row {
        flex-direction: column;
        gap: 2em;
    }
    .bd2c-i {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}


/* ===========================
   ==== Pioneer Solution =====
   =========================== */
.pioneer-section {
    background-color: #ECF9FD;
}

.ps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5em 8em;
}

.ps-row {
    display: flex;
}

.ps-1 {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 50%;
}

.ps-1sp {
    letter-spacing: 3px;
    font-size: 1.25em;
    color: #03b9e2;
}

.ps-1sp1 {
    letter-spacing: 3px;
    font-size: 2.5em;
    font-weight: 500;
}

.psp {
    margin: 1em 0;
    font-size: large;
    width: 80%;
}


.ps-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

@media (max-width: 480px) {
    .ps-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2em;
    }

    .ps-1 {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        width: 100%;
    }

    .ps-1sp1 {
        line-height: 1em;
        ;
    }

    .psp {
        padding: 0;
        margin: 1em 0;
        width: 100%;
    }

    .ps-2 {
        display: none;
    }

    .ps-btn {
        text-align: center;
    }
}



/* ===========================
   ======= Resources =========
   =========================== */

.resouces {
    background-color: white;
    padding: 5em 10em;
}

.res-head {
    text-align: center;
    font-size: 1.25em;
    font-weight: 700;
    margin: 2em 0;
}

.res-headp {
    color: #03b9e2;
    font-size: larger;
    font-weight: 500;
    letter-spacing: 2px;
    ;
    margin-bottom: 1em;
}

.res-card {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    align-items: stretch;
}

.res-c1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.res-cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
    border-radius: 10px;
}

.res-c1-head {
    font-size: 1.75em;
    font-weight: 500;
    text-align: center;
}

.news-card {
    position: relative;
    width: 18em;
    height: 18em;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.middle-news {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    color: black;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    text-align: center;
    transition: opacity 0.4s ease-in-out;
    gap: 6;
}

.news-card:hover .middle-news {
    opacity: 1;
}

.mn1 {
    font-size: 1.75em;
    margin-bottom: 0.75;
}

.mn-p {
    font-size: medium;
    margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
    .resouces {
        padding: 3em 2em;
    }

    .res-head {
        font-size: 1.1em;
    }

    .res-headp {
        font-size: 1em;
    }

    .news-card,
    .res-cert {
        width: 90%;
        height: auto;
    }

    .news-card {
        min-height: 18em;
    }

    .res-c1-head {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .resouces {
        padding: 2em 1em;
    }

    .res-head {
        font-size: 1em;
    }

    .res-headp {
        font-size: 0.9em;
        letter-spacing: 1px;
    }

    .news-card,
    .res-cert {
        width: 100%;
        height: auto;
    }

    .middle-news {
        padding: 1em;
    }

    .res-c1-head {
        font-size: 1.3em;
    }

    .text-news {
        font-size: 1em;
    }

    .btn1 {
        font-size: 0.9em;
    }
}

/* ===========================
   ======= World ======
   =========================== */

.world {
    background-color: #dbf3f9;
    padding: 4em 2em;
}

.world-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.world-box {
    flex: 1 1 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.world-head h4 {
    font-size: 1em;
    letter-spacing: 0.3em;
    margin-bottom: 0.5em;
    color: #1c365a;
}

.world-head h5.wh2 {
    font-size: 4.5em;
    font-weight: 500;
    line-height: 1.2em;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}


.wb1 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.wb2 {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8em;
    color: #333;
}

@media (max-width: 768px) {
    .world-head h5.wh2 {
        font-size: 2em;
    }

    .wb1 {
        font-size: 1.25em;
    }

    .wb2 {
        font-size: 0.95em;
        line-height: 1.6em;
    }
}

@media (max-width: 480px) {
    .world {
        padding: 2em 1em;
    }

    .world-head h5.wh2 {
        font-size: 1.5em;
    }

    .world-container {
        flex-direction: column;
        gap: 1.5em;
    }

    .world-box {
        flex: 1 1 100%;
    }
}

/* ===========================
   ===== Support Section =====
   =========================== */
.support {
    background-color: #dbf3f9;
    padding: 1em;
}

.sup-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 2em;
}

.sup1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 150px;
}

.pic img {
    max-width: 100%;
    height: auto;
}

.dd3 {
    margin-top: 0.5em;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sup1 {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .sup1 {
        width: 100%;
    }

    .dd3 {
        font-size: 0.95rem;
    }
}

/* ===========================
   ==== PREMIUM-CLEIENTELE ===
   =========================== */

   .pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em 12em;
    text-align: center;
    gap: 2em;
}

.pc1-p {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #03b9e2;
}

.pc1-d>h3 {
    font-size: 1.5em;
    font-weight: 700;
}

@media (max-width:1024px) {
    .pc {
        padding: 2em 1em;
    }
}

@media (max-width:468px) {
    .pc {
        padding: 1em;
    }

    .pc1-p {
        font-size: 1em;
    }

    .pc1-d>h3 {
        font-size: 1em;
    }
}

/* ===========================
   ===== Comapines Scroll ====
   =========================== */
.premium-client {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 2em 0;
}

.pc {
    max-width: 1200px;
    margin: auto;
}

.pc1-d {
    text-align: center;
    margin-bottom: 1em;
}

.pc1-p {
    font-size: 1.1em;
    font-weight: 600;
    color: #555;
}

.csl-slider {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.csl-slider:active {
    cursor: grabbing;
}

.csl-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    padding-left: 250em;
    animation: scrollLeft 40s infinite alternate;
    gap:2em;
}

.csl-item {
    flex: 0 0 auto;
    padding: 0.5em 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px; 
    width: 115px;
    box-sizing: border-box;
}

.csl-item img {
    width: 6em;
    height: 6em;
    object-fit: contain;
    object-position: center center;
    display: block;
}

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

@media (max-width:1024px) {
    .pc {
        padding: 2em 1em;
    }

    .csl-track {
        display: flex;
        animation: scrollLeft 10s linear infinite;
    }

    .csl-item {
        flex: 0 0 auto;
        padding: 0.5em 0.5em;
    }

    .csl-item img {
        display: block;
        width: 80px;
        height: 50px;
    }

}

@media (max-width:468px) {
    .csl-track {
        display: flex;
        animation: scrollLeft 10s linear infinite;
    }

    .csl-item {
        flex: 0 0 auto;
        padding: 0.5em 0.5em;
    }

    .csl-item img {
        display: block;
        width: 80px;
        height: 50px;
    }
    .csl-track {
        animation: scrollLeft 50s linear infinite;
        gap:0;
    }
}



/* popup style */
#popupBanner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(146, 202, 255);
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 900px;         /* Wider popup */
    max-width: 95vw;
    max-height: 80vh;
    overflow-y: auto;
    font-family: sans-serif;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    border-radius: 50%;
}
.popup-content {
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
    justify-content: center;
}

.text-section {
    flex: 3;
}

.image-section {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 10px;
}

#popupBanner h3 {
    font-size: 1.5rem;
    margin-bottom: 1em;
    color: #0a2342;
}

#popupBanner ul {
    list-style-type: disc;
    padding-left: 1.2em;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    font-weight: 700;
}

#popupBanner ul img {
    width: 55px;
    margin-left: 6px;
    vertical-align: middle;
}

.read-more-btn {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background-color: #193459;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #029ac1;
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-section img {
        max-width: 90%;
    }

    #popupBanner {
        width: 95%;
    }
}

@media (max-width: 480px) {
    #popupBanner {
        width: 100%;
        padding: 1em;
    }

    .text-section {
        font-size: 0.9rem;
        text-align: left;
        align-items: left;
    }

    .image-section img {
        max-width: 100%;
    }
    .popup-content {
        flex-direction: column-reverse; /* ensures image is on top */
    }
}