


        body {
             font-family: "Poppins", sans-serif;
            background-color: #f0f0f0;
            color: #334155;
        }
        :root {
            --primary: #28B6F6;
            --secondary: #0288D1;
            --background-light: #F0F5F7;
            --card-light: #FFFFFF;
            --text-light: #334155;
        }
        .bg-primary { background-color: var(--primary) !important; }
        .bg-secondary { background-color: var(--secondary) !important; }
        .text-primary { color: var(--primary) !important; }
        .btn-primary { background-color: var(--primary); border-color: var(--primary); }
        .btn-primary:hover { background-color: var(--secondary); border-color: var(--secondary); }
        .border-primary { border-color: var(--primary) !important; }
        .shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
        .shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }
        .shadow-xl { box-shadow: 0 1.5rem 4rem rgba(0,0,0,.15) !important; }
        .rounded-lg { border-radius: .5rem !important; }
        .rounded-xl { border-radius: 1rem !important; }
        .rounded-2xl { border-radius: 1.5rem !important; }
        .rounded-3xl { border-radius: 2rem !important; }
        .font-bold { font-weight: 700 !important; }
        .text-xl { font-size: 1.25rem !important; }
        .text-2xl { font-size: 1.5rem !important; }
        .text-3xl { font-size: 1.75rem !important; }
        .text-4xl { font-size: 2.25rem !important; }
        .text-5xl { font-size: 3rem !important; }
        .text-6xl { font-size: 3.75rem !important; }
        .leading-tight { line-height: 1.25 !important; }
        .leading-relaxed { line-height: 1.625 !important; }
        .leading-none { line-height: 1 !important; }
        .tracking-tight { letter-spacing: -.025em !important; }
        .tracking-wide { letter-spacing: .025em !important; }
        .tracking-wider { letter-spacing: .05em !important; }
        .uppercase { text-transform: uppercase !important; }
        .opacity-10 { opacity: .1 !important; }
        .opacity-20 { opacity: .2 !important; }
        .opacity-50 { opacity: .5 !important; }
        .opacity-80 { opacity: .8 !important; }
        .opacity-90 { opacity: .9 !important; }
        .grayscale { filter: grayscale(100%) !important; }
        .bg-gradient-to-br { background: linear-gradient(to bottom right, var(--from), var(--to)); }
        .text-transparent { color: transparent !important; }
        .bg-clip-text { background-clip: text !important; }
        .bg-gradient-to-r { background: linear-gradient(to right, var(--from), var(--to)); }
        .animate-marquee {
            animation: marquee 25s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .overflow-x-auto::-webkit-scrollbar {
            height: 6px;
        }
        .overflow-x-auto::-webkit-scrollbar-track {
            background: transparent;
        }
        .overflow-x-auto::-webkit-scrollbar-thumb {
            background-color: #cbd5e1;
            border-radius: 20px;
        }
        .object-cover {
            object-fit: cover;
        }
        @media (max-width: 576px) {
            .display-4 {
                font-size: 2.5rem;
            }
            .text-4xl {
                font-size: 1.75rem !important;
            }
            .text-5xl {
                font-size: 2.25rem !important;
            }
            .text-6xl {
                font-size: 2.75rem !important;
            }
            .min-h-280 {
                min-height: auto !important;
            }
            .h-130 {
                height: auto !important;
            }
        }


        header{
           background-image: url(../images/header-texture.png);
    background-repeat: repeat-x;
    background-size: contain;
   
        background-color: #e9eced;
        }


        .cstmNav{   
                background: #fff;
    border-radius: 50px;
    padding: 0 30px;
    box-shadow: 0px 18px 45px #12a9b929;
    align-items: flex-end;  }

    .topBar{}
    .topBar span{font-size: 14px;}
    .topBar a {
        padding: 7px 16px;
        font-weight: 500;
        font-size: 13px;
}

.cstmNav .nav-link{
   color: #000;
    font-weight: 500;
    margin: 0;
    position: relative;
   
    
}

.cstmNav .nav-link, .cstmNav .nav-link:focus {outline: none !important; box-shadow: none !important; border: none; }

.navbar-nav{gap:15px;}

li.nav-item.pageActive > a::after {
  content: "";
    width: 20px;
    height: 7px;
    display: inline-block;
    position: absolute;
    border-radius: 30px;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(91deg, #05bdfd 30%, #8edacf 100%);
}

li.nav-item > a::after {
  content: "";
    width: 20px;
    height: 7px;
    display: inline-block;
    position: absolute;
    border-radius: 30px;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(91deg, #05bdfd 30%, #8edacf 100%);
    display: none;
    transition: all 0.5s;
}

li.nav-item > a:hover::after {display: block; transition: all 0.5s;}

.carousel-control-next, .carousel-control-prev {
    background: none;
    border: none;
}

.tickers{
   border-radius: 50px;
    height: 70px;
    display: flex;
    position: relative;
    box-shadow: 0px 20px 20px #f1eada;
    width: calc(100% - 30px);
}

.tickers::after {
    content: "";
    background: #ffffff;
    width: 162px;
    position: absolute;
    left: 0;
    height: 80px;
}
.tickers h3{
          font-size: 16px;
    margin: 0 0 0 -15px;
    font-weight: 600;
    background: linear-gradient(91deg, #93dff9 20%, #8edacf00 100%);
    padding: 0 40px 0 20px;
    z-index: 999;
    color: #093247;
}

.secHeading{
    color: #093247;
    text-shadow: 0px 7px 13px #007b8347;
}

.Products-Services .card {
border-radius: 15px;
    border: none;
    box-shadow: 0px 7px 1rem 0px rgb(229 229 229) !important;
}



.Products-Services .card h3 {
    color: #1c3433;
    font-weight: 600;
    margin: 0 0 20px 0;
    font-size: 18px !important;
}

.Products-Services .card img {
    width: 48px;
    margin: 0 10px 0 0;
}

.Products-Services .secHeading {
    margin: 0 30px 0 0;
    border-right: solid 1px #222222;
    padding: 0 30px 0 0;
}

.Products-Services .card a {
    color: #1e4974 !important;
}


.btmLogo{
        text-align: center;
    background: url(../images/logosBG.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 60px 0;
}

.btmLogo img{
    max-width: 1100px;
    width: 100%;
}

.APP-sec{
         background: linear-gradient(91deg, #c9e8f4 0%, #d2eaf4 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 100px;
}

.APP-sec h2{
    font-size: 40px;
    color: #232727;
}

.appHand {
    position: absolute;
    bottom: -147px;
    width: 100%;
    max-width: 517px;
}

.Live-Market{
        background: linear-gradient(1deg, #e0f4fd 30%, #eff7f8 100%);
        
}

.Live-Market::after {
    background-image: url(../images/live-bg-1.png);
    content: "";
    width: 400px;
    height: 177px;
    position: absolute;
    top: 20%;
    right: 0;
    background-size: cover;
}

.Live-Market::before {
    background-image: url(../images/live-bg-2.png);
    content: "";
    width: 400px;
    height: 177px;
    position: absolute;
    bottom: 20%;
left: 0;
    background-size: cover;
}

.fourData {
       margin: 0;
    padding: 0 0 0 16px;
    display: flex;
}
.fourData li {
  list-style-type: none;
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 135px;
  text-align: center;
  align-content: center;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin: 0 0 0 -16px;
  box-shadow: -2px 0px 11px 4px #d0d0d01c;
}

.fourData li small{
       color: #16ce94;
       font-weight: 600;
       font-size: 15px;
}

.fourData li img{
    width: 48px;
    height: auto;
}

.fourData li p{
  margin: 0;
  padding: 0;
  color: #1c3433;
  font-weight: 600;
  font-size: 17px;
}

.fourData li.green{
    background-color: #e6ffe9;
}

.fourData li.green p{
color: #16ce94; 
}

.fourData li.red{
   background-color: #ffece9;
}

.fourData li.red p, .fourData li.red small{
color: #ff6d56; 
}


.twoData {
         padding: 0;
    display: flex;
    width: fit-content;
    background: #fff;
    border-radius: 18px;
    margin: 0 0 0 25px;
}
    .twoData li {
   list-style-type: none;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    width: 170px;
    height: 135px;
    text-align: center;
    align-content: center;
    align-items: flex-start;
    gap: 7px;
    justify-content: center;
    /* margin: 0 0 0 -16px; */
    /* box-shadow: -2px 0px 11px 4px #d0d0d01c; */
    padding: 0 25px;
        border-right: solid 2px #ebf6f9;
}

.twoData li small{
          color: #1d4974;
          font-weight: 600;
          font-size: 13px;
          text-align: left;
}

.twoData li img{
    width: 60px;
    height: auto;
}

.twoData li p{
  margin: 0;
  padding: 0;
  color: #1c3433;
  font-weight: 600;
  font-size: 17px;
}


.live-tble1 {
    border-radius: 22px;
    border: none;
    padding: 23px;
    background: linear-gradient(1deg, #e1f4fd 0%, #00bdff1f 100%);
    z-index: 9;
}

.live-tble2 {
    border-radius: 22px;
    border: none;
    padding: 23px;
    background: linear-gradient(180deg, #e8f6fb 0%, #caeefc 100%);
    z-index: 9;
}

.live-tble3 {
    border-radius: 22px;
    border: none;
    padding: 23px;
    background: linear-gradient(1deg, #e1f4fd 0%, #caeefc 100%);
    z-index: 9;
}


.live-tble4 {
    border-radius: 22px;
    border: none;
    padding: 23px;
    background: linear-gradient(1deg, #e1f4fd 0%, #e3fde8 100%);
        z-index: 9;
}

.live-tble5 {
    border-radius: 22px;
    border: none;
    padding: 23px;
    background: linear-gradient(180deg, #e1f4fd 0%, #fee4e0 100%);
        z-index: 9;
}

.live-tble1 th, .live-tble2 th, .live-tble3 th, .live-tble4 th, .live-tble5 th {
       text-align: inherit;
    color: #656d6d;
    font-size: 17px;
    font-weight: 300;
    padding-bottom: 6px;
}

.live-tble1 td, .live-tble2 td, .live-tble3 td, .live-tble4 td, .live-tble5 td{
    color:#1c3433;
}

.live-tble1 td, .live-tble2 td, .live-tble3 td, .live-tble4 td, .live-tble5 td {
    color: #212121;
    font-weight: 500 !important;
    padding: 0 0 12px 0;
}

.Live-Market .text-success {
    color: #13c087 !important;
}

th.proWd {
    width: 240px;
}

.progress {
    border-radius: 50px;
    background: #fff;
    border: solid 3px #fff;
    height: 13px;
}


.progress-bar.performer {
    border-radius: 50px;
    background: linear-gradient(90deg, #d4f6eb 0%, #67dfb9 100%);
}

.progress-bar.lowperformer {
    border-radius: 50px;
    background: linear-gradient(90deg, #ffdfda 0%, #fe8f7d 100%);
}

footer{
   background-color: #effaff;
    float: left;
    width: 100%;
}
footer h5{
    font-weight: 600;
    font-size: 17px;
}

footer .list-unstyled {
   
    line-height: 32px;
}

footer a{font-size: 15px;     color: #093247;}



.submenu{position: relative;}

.headerLogo{max-width: 215px; padding: 15px 0;}

.dropdown-menu {
    border: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 9px 7px 2px #f1f1f1ad;
    font-size: 14px;
}
.dropdown-menu > a {
    margin: 0 0 10px 0;
}


.nav.nav-tabs.marketTab{
       margin: 0 auto;
    clear: both;
    width: fit-content;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px;
    gap: 25px;
    box-shadow: 0px 6px 14px 0px #007b8330;
}
.nav-tabs.marketTab .nav-link{
        border: none;
        color: #1c3433;
        font-weight: 600;
        border-radius: 50px;
}
.nav-tabs.marketTab .nav-item.show .nav-link, .nav-tabs.marketTab .nav-link.active, .nav-tabs.marketTab .nav-link:hover{
    border: none;
    color: #fff;
    background: linear-gradient(91deg, #05bdfd 30%, #2b66a1 100%);
    border-radius: 50px;
}


.counters{padding: 20px;border-right: solid 1px #cccccc78;border-bottom: solid 1px #cccccc78;text-align: center;}
.counters .counter{
    font-size: 60px;
    font-weight: 200;
    color: #0b0b0c;
    text-shadow: 3px 4px 5px #007b8347;
    line-height: 74px;
    }
.counters span {
        font-weight: 400;
        /* letter-spacing: 1px; */
        font-size: 14px;
        color: #939393;
}

#counterSection h3{
    font-size: 2.8vw;
    font-weight: 200;
    max-inline-size: 14ch;
    text-wrap: balance;
    color: black;
}

section#counterSection {
    background: white;
    padding-top: 100px;
}

.counters:nth-child(2), .counters:nth-child(4) {
    border-right: none;
}

.counters:nth-child(3), .counters:nth-child(4) {
    border-bottom: none;
}


.headingImg{
    background-image: url("../images/number-graph.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-bottom: 160px;
    background-size: min(100%, 356px);
}


.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

section{width: 100%; float: left;}

.slick-track{display: flex; align-items:center;}
.slick-slide{text-align: center;}
.slick-slide img{max-width: 180px; }

.customer-logos .slick-track {
    display: flex !important;
    justify-content: center !important;  /* ⭐ ye slider ko center karta hai */
}

.customer-logos .slick-slide {
    float: none !important;
    height: auto;
}

.breadcrumb{
        background: transparent;
    font-size: 13px;
    padding: 0;
    margin: 0 0 10px 0;
        letter-spacing: 1.5px;
}


.breadcrumb a {
    color: #06bdfd;}

.pageHeader{

    margin: 60px 0 60px 0;

}
.pageHeader h1{
   color: #093247;
    text-shadow: 0px 7px 13px #007b8347;
    font-weight: 700;
    letter-spacing: 1.5px;
   
}

.management__img {
       width: 165px;
    height: 165px;
    clear: both;
    margin: 30px auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: #fff;
}

.management__img img {
    max-width: 125px !important;
}


.keymanagement {
background: linear-gradient(91deg, #05bdfd0f 30%, #2b66a138 100%);
    border: none;
    border-radius: 10px;

}

.management_txt span{
display: block;
    font-weight: 400;
    position: relative;
    margin: 0 0 30px 0;
}

.management_txt span::after {
   background: #ccc;
    content: "";
    width: 34px;
    height: 5px;
    position: absolute;
    left: 50%;
    bottom: -15px;
    border-radius: 20px;
    background: linear-gradient(91deg, #05bdfc 32%, #15416d 100%);
    opacity: 0.9;
    transform: translate(-50%, -50%);
}

.management_txt.card-body {
    text-align: center;
}



 @media (min-width: 300px) and (max-width: 767px) {

    .navbar-nav.ml-auto{
        margin-bottom: 15px !important;
    }

    .nav-tabs.marketTab .nav-link {
    padding: 6px 11px;
    font-size: 13px;
}

    .nav.nav-tabs.marketTab{
      
    gap: 2px;
}

    .cstmNav{margin-top: 15px;}

    .headerLogo{
        max-width: 175px;
        padding: 10px 0;
        margin: 0 0 0 20px;
    }

    #navbarNav{ 
    position: absolute;
    background: rgb(255, 255, 255);
    width: calc(100% - 40px);
    top: 95px;
    left: 20px;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0px 9px 7px 2px #f1f1f1ad;
    }

    .cstmNav .nav-link {
    font-size: 15px;
 }

li.nav-item.pageActive > a::after, li.nav-item > a::after {
   
    height: 4px;
    bottom: 0;
    left: 12px;
   
}

.dropdown-menu > a {
    margin: 0 0 10px 0;
    padding: 0 15px;
}

.bottomAppLOGO img{
    max-width: 90px !important;
}


footer a {
    font-size: 14px;
}


.Products-Services .secHeading{        text-align: center;
        border: none;
        padding: 0;
        margin: 0 0 10px 0;
        text-align: left;
        margin-right: auto;
    }


    .fourData {
    flex-wrap: wrap;
        width: 100%;
        padding:0;
}

.fourData li {
    width: 50%;
    margin: 0;
}

.twoData {
    width: 100%;
    margin: 10px 0 0 0;
}

.twoData li{
    width: 50%;
}

.APP-sec h2 {
    font-size: 28px;
}

.leading-relaxed {
    font-size: 16px !important;
}

.appHand{
    position: static;
}

.appBTNS img {
    width: 100%;
    max-width: 123px;
}

.APP-sec {
  
    padding-top: 50px;
    padding-bottom: 40px;

}

 }

 @media (min-width: 767px) {


    .cstmNav{align-items: flex-end !important;}

    .cstmNav .nav-link{padding-bottom: 30px;    }



}



    @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1450px;
    }
}

 @media (min-width: 767px) and (max-width: 2000px){
li.nav-item.dropdown:hover .dropdown-menu {
     display: block;
    margin: 0;
}
} 