@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Anek+Devanagari:wght@100..800&family=Antonio:wght@100..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&family=Syne:wght@400..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'CabinetGrotesk-Regular';
    src: url('../webfonts/CabinetGrotesk-Regular.ttf');
}


:root {
    --inter: "Syne", sans-serif;
    --theme-font: var(--inter);
    --theme-bg: #ffffff;
    --theme-color: #000000;
    --white: #000000;
    --black: #D2C8FA;
    /*    --primary-color: #6b277d;*/
    --primary-color: #6c267d;
    --secondary-color: #757575;
    --tertiary-color: #FFEEDB;
    --quaternary-color: #040404;
    --quinary-color: #c1c1c1;
    --senary-color: #191919;
    --septenary-color: #101010;
    --octonary-color: #1a1a1a;
    --nonary-color: #d9d9d9;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 0 31px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'CabinetGrotesk-Regular';
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    font-family: "Newsreader", serif;
    font-weight: 200;
    font-style: italic;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #fff;
    background-color: #1770c8;
}

*::selection {
    color: #fff;
    background-color: #1770c8;
}

*:focus {
    box-shadow: none !important;
}

*:focus-visible {
    box-shadow: none !important;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    color: var(--theme-color);
    background-color: #ffffff;
    overflow-x: clip;
    max-width: 100vw;
}

a,
button {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme-color);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    transition: var(--transition);
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

.primary {
    color: #6c267d
}

h2 {
    font-size: 45px
}

h4 {
    font-size: 30px;
}


.w-15 {
    width: 20% !important;
}
.primary-navbar .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

.primary-navbar .navbar__menu {
    flex-grow: 1;
}

.primary-navbar .navbar__menu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.primary-navbar .navbar__item button,
.primary-navbar .navbar__item a {
    font-size: 14px;
    padding: 0 10px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    line-height: 70px;
}
.primary-navbar .navbar__sub-menu a{line-height: inherit;}

.primary-navbar .navbar__item--has-children {
    position: relative;
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: var(--primary-color);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label::after {
    transform: rotate(90deg);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label-sub::after {
    transform: rotate(180deg);
}

.primary-navbar .navbar__item--has-children:hover>.navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all;
}

.primary-navbar .navbar__dropdown-label {
    position: relative;
    justify-content: space-between;
}

.primary-navbar .navbar__dropdown-label::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f061";
    border: none;
    transform: rotate(40deg);
    transition: transform 0.3s ease-in-out;
    font-size: inherit;
}

.primary-navbar .navbar__sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: max-content;
    /*        min-width: 220px;
        max-width: 260px;*/
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 0px;
    border-radius: 5px;
    z-index: 9;
}

.primary-navbar .navbar__sub-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 25px;
    height: 15px;
    width: 15px;
    transform: rotate(45deg);
    background-color: inherit;
    transition: var(--transition);
    z-index: -1;
}

.primary-navbar .navbar__sub-menu li:nth-last-of-type(1) a {
    border-bottom: 0px;
}

.primary-navbar .navbar__sub-menu a,
.primary-navbar .navbar__sub-menu button {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    color: #000;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.4784313725);
}

.primary-navbar .navbar__sub-menu a:hover,
.primary-navbar .navbar__sub-menu button:hover {
    color: var(--primary-color);
}

.primary-navbar .navbar__sub-menu a:hover::before,
.primary-navbar .navbar__sub-menu button:hover::before {
    width: 10px;
}

.primary-navbar .navbar__sub-menu .navbar__dropdown-label-sub::before {
    display: none;
}

.primary-navbar .navbar__sub-menu--lg {
    min-width: 300px;
    max-width: 300px;
}

.primary-navbar .navbar__sub-menu__nested {
    top: 0%;
    left: 100%;
    min-width: 200px;
}

.primary-navbar .navbar__sub-menu__nested::before {
    left: -5px;
    top: 17px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.primary-navbar .navbar__sub-menu-n {
    display: none;
}

.primary-navbar .navbar__options {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-navbar .open-mobile-menu {
    font-size: 30px;
    color: var(--white);
}

.primary-navbar .navbar__item--has-children {
    position: relative;
}
.top-bar{padding: 6px 0px;}
.top-bar a{font-size: 14px;}
header{padding: 10px 0px;}
.header-btn, .header-btn-black {
    color: #121C27;
    background-color: #FFFFFF26;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #121C27 !important;
    padding: 0px 20px 0px 20px;
    -webkit-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -khtml-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -moz-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -ms-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    position: relative;
    cursor: pointer;
    border: none;
    height: auto;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    border-radius: 56px;
}

.header-btn:hover {
    color: #FDFEFF;
    border-color: #121C27 !important;
    background-color: #121C27;
}
.header-btn-black{
    color: #FDFEFF;
    border-color: #121C27 !important;
    background-color: #121C27;
}
.header-btn-black:hover{
    color: #121C27;
    background-color: #FFFFFF26;
}
.small-btn{
    padding: 0 10px;
    line-height: 30px;
}

.white-btn {
    color: #FFF;
    background-color: #FFFFFF26;
    border-color: #FFF !important;
}

.white-btn:hover {}

.navbar a {
    font-size: 14px;
}

.carousel-item{    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;}

    .carousel-item:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(0 0 0 / 40%);
    }
    .carousel-caption {
        bottom: 25%;
        left: 20%;
        right: 20%;
        color: #fff;
        text-align: left;
        top: 25%;
        z-index: 3;
        border-radius: 10px;
    }
    
    .carousel-form a{
        text-decoration: overline;
        padding-left: 5px;
        padding-right: 5px;
    }

.carousel-control-next,
.carousel-control-prev {
    width: 2%;
}

.carousel-caption h5 {
    font-size: 50px;
}

.banner-btn {
    color: #121C27;
    background-color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #121C27 !important;
    padding: 5px 30px;
    -webkit-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -khtml-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -moz-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -ms-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    position: relative;
    cursor: pointer;
    border: none;
    height: auto;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    border-radius: 56px;
}

.banner-btn:hover {
    color: #FDFEFF;
    border-color: #121C27 !important;
    background-color: #121C27;
}

.home-clients {
    background-color: #ECE6E1;
}

.home-clients h4 {
    font-size: 35px;
    border-right: 1px solid #333;
}

.home-service h4 {
    font-size: 40px
}
.card{
    --bs-card-border-color: none;
}
.card-body-home {
    background-color: #121C27;
    color: #d4d4d4;
}

.home-body-about {
    margin-bottom: 150px;
    display: block;
}

.card-body-home>.card-body>h4 {
    font-size: 45px;
}

.card-body-home a {
    color: #fff;
}

.card-body h3 {
    font-size: 18px;
}

/* CSS FOR HOME SERVICES SECTION */
._page_hya97e {
    display: flex;
    flex-direction: column;
}

._block_1vgpnr {
    position: relative;
    padding-bottom: 44px;
    background: var(--column-background, var(--block-background, var(--page-background)));
}

._block_1vgpnr:not(:first-child) {
    transform: translateY(-44px);
    margin-bottom: -44px;
}

.top-spacing--small {
    padding-top: 64px;
}

.horizontal-spacing--small {
    padding-right: 40px;
    padding-left: 40px;
}

._list_1k8nf6 {
    display: flex;
    flex-direction: column;
    margin-bottom: -100px;
    gap: 8px
}

._link_10yvlm {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: var(--border);
    border-radius: 32px;
    transition: border-radius .3s ease-out;
    outline-offset: 3px
}

._featured_10yvlm ._link_10yvlm {
    transition-duration: .5s
}

@media screen and (max-width:768px) {
    ._perspective-grid_1ljlru {
        grid-template-columns: 1fr
    }

    ._featured_10yvlm ._link_10yvlm {
        transition-duration: .3s
    }
}

@media screen and (max-width:1024px) {
    ._link_10yvlm {
        border-radius: 24px
    }
}

._link_10yvlm:focus ._arrow-icon_10yvlm,
._link_10yvlm:hover ._arrow-icon_10yvlm {
    opacity: 1
}

._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:focus,
._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:hover {
    border-radius: var(--hover-radius, 50%)
}

._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:focus ._arrow-icon_10yvlm,
._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:hover ._arrow-icon_10yvlm {
    opacity: 1
}

._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:focus ._image-container_10yvlm ._go-icon_10yvlm,
._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:hover ._image-container_10yvlm ._go-icon_10yvlm {
    opacity: 1;
    filter: blur(0);
    scale: 1
}

._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:focus ._project-image_10yvlm,
._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:hover ._project-image_10yvlm {
    transform: scale(1.05);
    filter: brightness(100%) contrast(100%)
}

._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:focus ._info-box_10yvlm,
._card_10yvlm:not(._static_10yvlm) ._link_10yvlm:hover ._info-box_10yvlm {
    transform: translateY(-100%)
}

._card_10yvlm {
    aspect-ratio: var(--aspect-ratio, 1/1)
}

@media screen and (min-width:769px) {
    ._card_10yvlm._featured_10yvlm {
        aspect-ratio: var(--aspect-ratio, 2/1)
    }

    ._card_10yvlm._featured_10yvlm ._pill_10yvlm {
        padding: 8.5px 15px
    }

    ._list_1ptpxz ._featured_1ptpxz {
        --aspect-ratio: 2/1;
        --hover-radius: 50%/100%
    }

    ._list_1ptpxz ._full-width_1ptpxz {
        grid-column: span 2
    }
}

._image-container_10yvlm {
    position: relative;
    overflow: hidden;
    height: 100%
}

._arrow-icon_10yvlm {
    opacity: 0;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    fill: #fff
}

._project-image_10yvlm {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    object-fit: cover
}

._item_1k8nf6 {
    position: sticky;
    top: 100px;
    --aspect-ratio: 7/3;
    --border: 2px solid #fff
}

@media screen and (max-width:768px) {
    ._list_1ptpxz {
        grid-template-columns: 1fr
    }

    ._item_1k8nf6 {
        --aspect-ratio: 1/1 !important
    }
}

._item_1k8nf6:nth-child(1) {
    top: calc(40px + 1 * 100px);
    margin-bottom: calc((var(--item-count) - 0) * 100px)
}

._item_1k8nf6:nth-child(1):not(:first-child) {
    margin-top: calc((var(--item-count) - -2) * -100px)
}

._item_1k8nf6:nth-child(2) {
    top: calc(40px + 2 * 100px);
    margin-bottom: calc((var(--item-count) - 1) * 100px)
}

._item_1k8nf6:nth-child(2):not(:first-child) {
    margin-top: calc((var(--item-count) - -1) * -100px)
}

._item_1k8nf6:nth-child(3) {
    top: calc(40px + 3 * 100px);
    margin-bottom: calc((var(--item-count) - 2) * 100px)
}

._item_1k8nf6:nth-child(3):not(:first-child) {
    margin-top: calc((var(--item-count) - 0) * -100px)
}

._item_1k8nf6:nth-child(4) {
    top: calc(40px + 4 * 100px);
    margin-bottom: calc((var(--item-count) - 3) * 100px)
}

._item_1k8nf6:nth-child(4):not(:first-child) {
    margin-top: calc((var(--item-count) - 1) * -100px)
}

._item_1k8nf6:nth-child(5) {
    top: calc(40px + 5 * 100px);
    margin-bottom: calc((var(--item-count) - 4) * 100px)
}

._item_1k8nf6:nth-child(5):not(:first-child) {
    margin-top: calc((var(--item-count) - 2) * -100px)
}

._item_1k8nf6:nth-child(6) {
    top: calc(40px + 6 * 100px);
    margin-bottom: calc((var(--item-count) - 5) * 100px)
}

._item_1k8nf6:nth-child(6):not(:first-child) {
    margin-top: calc((var(--item-count) - 3) * -100px)
}

._item_1k8nf6:nth-child(7) {
    top: calc(40px + 7 * 100px);
    margin-bottom: calc((var(--item-count) - 6) * 100px)
}

._item_1k8nf6:nth-child(7):not(:first-child) {
    margin-top: calc((var(--item-count) - 4) * -100px)
}

._item_1k8nf6:nth-child(8) {
    top: calc(40px + 8 * 100px);
    margin-bottom: calc((var(--item-count) - 7) * 100px)
}

._item_1k8nf6:nth-child(8):not(:first-child) {
    margin-top: calc((var(--item-count) - 5) * -100px)
}

._item_1k8nf6:nth-child(9) {
    top: calc(40px + 9 * 100px);
    margin-bottom: calc((var(--item-count) - 8) * 100px)
}

._item_1k8nf6:nth-child(9):not(:first-child) {
    margin-top: calc((var(--item-count) - 6) * -100px)
}

._item_1k8nf6:nth-child(10) {
    top: calc(40px + 10 * 100px);
    margin-bottom: calc((var(--item-count) - 9) * 100px)
}

._item_1k8nf6:nth-child(10):not(:first-child) {
    margin-top: calc((var(--item-count) - 7) * -100px)
}

._go-icon-container_10yvlm {
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

._static_10yvlm ._go-icon-container_10yvlm {
    display: none
}

._go-icon_10yvlm {
    display: flex;
    opacity: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #fff;
    transition-duration: .3s;
    transition-property: opacity, scale, filter;
    filter: blur(10px);
    scale: 1.2;
    transition-timing-function: ease-out
}

._padding--small_10o0pn {
    padding: 32px;
}

._info-box_10yvlm {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: transform .3s
}

._info-overlay_10yvlm {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2), transparent 50%)
}

._client-name_10yvlm {
    display: flex;
    align-items: center;
    max-width: 80%;
    font-weight: 400;
    color: #fff;
    font-size: 20px;
}

._pills_10yvlm {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-flow: row wrap;
    gap: 4px
}

._pills--industries_10yvlm,
._pills--platforms_10yvlm {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

@media screen and (max-width:768px) {

    ._pills--industries_10yvlm>._pill_10yvlm,
    ._pills--platforms_10yvlm>._pill_10yvlm {
        display: none
    }

    ._pills--industries_10yvlm>._pill_10yvlm:nth-child(1),
    ._pills--platforms_10yvlm>._pill_10yvlm:nth-child(1) {
        display: block
    }
}

._pill_10yvlm {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 13px;
    border-radius: 32px;
    background: #fff;
    white-space: nowrap
}

.delivery {
    position: relative;
    border-radius: 44px;
    overflow: auto;
    color: #fff;
}

.delivery a {
    color: #fff;
}

.bg-image-wrapper,
.bg-image-wrapper::after {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.bg-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bg-image-wrapper::after {
    display: block;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, 0) 33.33%, rgba(0, 0, 0, 0) 66.67%, rgba(0, 0, 0, .4) 100%), linear-gradient(0deg, rgba(0, 0, 0, .24) 0, rgba(0, 0, 0, .24) 100%);
}

.grid {
    display: grid;
    grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
    grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
    gap: var(--bs-gap, 1.5rem);
}

.why-milleniance {
    justify-content: space-between;
}

.why-milleniance h4 {
    font-size: 20px;
}

.why-icon {
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    display: flex;
    position: relative;
}

.why-icon i {
    background-color: #6c267d;
    padding: 6px;
    border-radius: 6px;
}

.blogs {}

.blogs img {
    border-radius: 22px;
    ;
}

.blogs h4 {
    font-size: 20px;
    height: 50px;
}

footer {
    background: rgba(000, 000, 000, .5);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    color: #ECE6E1;
    font-size: 12px;
}

footer h4 {
    font-size: 22px;
    font-weight: 100;
    margin-bottom: 25px;
}

footer a {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ECE6E1;
}

footer a {
    display: inline-block;
    padding-bottom: 2px;
    background-image: linear-gradient(#ECE6E1 0 0);
    background-position: 0 100%;
    /*OR bottom left*/
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition:
        background-size 0.3s,
        background-position 0s 0.3s;
    /*change after the size immediately*/
}

footer a:hover {
    background-position: 100% 100%;
    /*OR bottom right*/
    background-size: 100% 2px;
}

footer p {
    font-size: 12px;
}

.no-underline {
    background-image: none;
}

.image-content {
    position: absolute;
}


/* About us header part */

.masthead__txt-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 1.4rem;
    padding: 0;
}

@media (min-width: 1025px) {
    .masthead__txt-list {
        margin: 0 0;
        overflow: hidden;
    }
}

.masthead__txt {
    color: #030510;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
    text-transform: uppercase;
}

.masthead__txt:first-child {
    margin-left: 0;
    padding-left: 0;
}

@media (min-width: 1025px) {
    .masthead__txt {
        font-size: 1.6rem;
        line-height: 3.4rem;
        margin-left: 5rem;
        padding-left: 6rem;
        transform: translateY(100%);
        transition: all .5s linear;
    }
}

@media (min-width: 1025px) {
    .masthead__txt {
        -webkit-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
}

@media (min-width: 1025px) {
    .masthead__txt:before {
        height: 10px;
        width: 10px;
    }
}

.masthead__txt:before {
    background: #030510;
    height: 5px;
    width: 5px;
}

.about-banner-img {
    border-radius: 50px;
}


.feature-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-box.text-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.vertical-counter-number {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.vertical-counter-number ul {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.mb-20 {
    margin-bottom: 20% !important;
}

.w-90 {
    width: 90% !important;
}

.mt-25 {
    margin-top: 25% !important;
}

.hover-box * {
    -webkit-transition: all .5s cubic-bezier(.5, 1, .89, 1);
    transition: all .5s cubic-bezier(.5, 1, .89, 1);
    will-change: transform;
}

.fw-700 {
    font-weight: 700 !important;
}

.w-90 {
    width: 90% !important;
}

.ps-35px {
    padding-left: 35px !important;
}

.pb-25px {
    padding-bottom: 25px !important;
}

.pe-35px {
    padding-right: 35px !important;
}

.pt-25px {
    padding-top: 25px !important;
}

.vertical-counter-number {
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    font-style: normal;
}

.counter-style-04 .vertical-counter:after {
    content: attr(data-text);
    display: inline-block;
    margin-left: 3px;
    word-break: normal;
}

.secondary {
    background-color: rgba(220, 243, 250, 0.5) !important;
    position: relative;
}

.third-bg {
    background-color: #ECE6E1;
}

.clients img {
    width: 140px !important;
}

.career .btn-close {
    filter: brightness(0.5);
}
/* CSS FOR CAPABILITIES */

.capability h3 {
    font-size: 75px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.capability h2 {
    font-size: 25px;
}

.capability p {
    line-height: 18px;
}


.card-body-service {
    background-color: #292929;
    position: relative;
    color: #fff;
}

.service-card {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    color: #333;
}

.service-card .why-milleniance .why-icon {
    color: #fff;
}


.noise__overlay {
    z-index: 0;
    opacity: .05;
    background-image: url(../images/noise.gif);
    background-position: 0 0;
    background-size: 480px;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}




.brands-study .client-logo {
    width: 150px;
}


.industry-usp {
    background: rgb(168, 167, 138);
    background: radial-gradient(circle, rgba(168, 167, 138, 1) 0%, rgba(81, 75, 56, 0.4668461134453782) 35%);
    color: #fff;
}



.industry-usp h3 {
    font-size: 20px;
    font-weight: 500;
}

.flex-items-center {
    align-items: center;
}

.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-3x {
    font-size: 3em;
}

.industry-usp h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.contact-text-input,
select,
textarea {
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid #8C8C8C;
    color: #594D49;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    border-radius: 0;
    margin-bottom: 25px;
}

.bg-warning {
    background-color: #fae62d !important;
}

.link-warning {
    color: #fae62d !important;
}


        .case-study a {
    display: block;
    text-align: left;
    width: fit-content;
    padding-bottom: 2px;
    background-image: linear-gradient(#333 0 0);
    background-position: 0 100%;
   
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition:
        background-size 0.3s,
        background-position 0s 0.3s;
   
}

.case-study a:hover {
    background-position: 100% 100%;
   
    background-size: 100% 2px;
}

.case-study .client-logo {
    width: 300px;
}
.case-study h1{
    font-size:22px;
}
.case-study h2{
    font-size: 26px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    padding-bottom: 25px;
    text-underline-offset: 12px;
}
.case-study h4{
    font-size:18px;
}
.case-study ul{
    margin-left: 29px;
}
.case-study ul li{
    list-style: decimal-leading-zero;
    padding-left: 10px;
}
.case-study img{
    border: 2px solid #D4AF37;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}
.case-study strong{
    font-size:22px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
  

.scrollspy-example {
    height: 500px;
    margin-top: .5rem;
    overflow: auto;
}

.blog-detail p, .blog-detail h1, .blog-detail h2, .blog-detail h3, .blog-detail h4, .blog-detail h5, .blog-detail ul, .blog-detail span{
width: 60%;
display: block;
margin-right: auto !important;
margin-left: auto !important;
color: #00246B;
}
.blog-detail img{
    max-width: 85%;
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 40px;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block;
}
.blog-detail ul{
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-detail li {
    list-style-type: disc;
    margin-left: 15px;
    padding-left: 5px;
    list-style-position: initial;
    font-size:17px;
    line-height: 27px;
}
.blog-detail h2{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-underline-offset: 7px;
}
.blog-detail a{
    color: blue;
}
.blog-detail p{
    font-size:17px;
    line-height: 27px;
    margin-bottom: 20px;
}
.inner-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}
.blog-detail span{
    margin-bottom: 0;
}

.google-review{padding: 60px 0px;}
.google-review .review {
    height: 253px;
    overflow: auto;
}

.review-container {
    max-width: 100%;
    margin: 0 auto;
}
.review-container h2 {
    text-align: center;
    color: #333;
}
.review {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: auto;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review-author {
    font-weight: bold;
    margin-right: 10px;
    color: #333;
}
.review-rating {
    color: #f39c12; /* Gold star color */
}
.review-text {
    margin-top: 5px;
    color: #555;
}



  


/******************Responsive-css********************/
@media (max-width: 767px) {
    h4 {
        font-size: 25px;
    }
    h2 {
        font-size: 30px;
    }
    .primary-navbar .navbar__item button, .primary-navbar .navbar__item a {
        line-height: 40px;
    }
    .navbar__sub-menu a {
        line-height: 20px !important;
    }
    .navbar {
        padding: 10px 0px !important;
    }
    
    
    .home-clients h4 {
        font-size: 35px;
        border-right: none;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }

    .home-clients {
        padding: 20px 0px;
    }
.home-service .w-50{width: 80% !important;}
.feature-box-content  h2 {
    font-size: 32px;
}
.vertical-counter-number{height: 40px !important;}
.horizontal-spacing--small {
    padding-right: 5px;
    padding-left: 5px;
}
.feature-box.text-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    padding: 30px 0px 20px 0px !important;
}
.border-start {
    border-left: none !important;
}


._pill_10yvlm {
    padding: 4px 8px;
    font-size: 11px;
}
.home-body-about {
    margin-bottom: 30px;
}
.card-body-home>.card-body>h4 {
    font-size: 35px;
}

.card-body-home .grid {
    display: block;
}
.feature-box-content .mt-25 {
    margin-top: 0% !important;
}
.feature-box-content .mb-20 {
    margin-bottom: 5% !important;
}
.secondary .col-md-7{order: 1;}
.secondary {padding: 0px 15px;}
.secondary .grid {
    display: block;
}
.secondary .offset-2 {
    margin-left: 0px;
}


.life-milleniance .w-50{width: 100% !important;}
.faq .offset-2 {
    margin-left: 21px;
}

.faq .col-8 {
    flex: 0 0 auto;
    width: 90.666667%;
}
.capability h2 {
    font-size: 18px;
    padding-top: 10px !important;
}
.capability h3 {
    font-size: 55px;
}
.carousel-caption {
    position: relative;
    bottom: 0%;
    left: 2%;
    color: #fff;
    text-align: left;
    top: 0%;
    z-index: 3;
    width: 100% !important;
}
.carousel-caption h5 {
    font-size: 20px;
    -webkit-text-stroke-width:inherit;
    -webkit-text-stroke-color: black;
}
.top-bar a, button {
    font-size: 13px;;
}
.banner-btn{
    padding: 0px 15px;
    margin-left: 0px;
}

.hover-box * {
    text-align: center;
}
.header-btn {
    font-size: 12px;
    line-height: 36px;
    padding: 0px 10px 0px 10px;
}
.order-cls{order: 1;}
.brands-study .mb-5 {
    margin-bottom: 0rem !important;
    padding-bottom: 15px;
}
.industry-usp .border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    width: 90%;
    margin: 0 auto;
}
.industry-usp .mb-5 {
    margin-bottom: 1rem !important;
}
.my-bottom{margin-bottom: 40px;}


}


.product-block {
    margin: 0 .5%;
    border: 1px solid #000;
    background: #fff;
    border-collapse: collapse;
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
}
.zfixed-main-box {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #d6d6d6;
    background: #fff;
    transition: .5s opacity ease;
    z-index: 1;
}
.main-box {
    padding: 35px 25px 10px;
    display: block;
    text-align: center;
    position: relative;
    padding-top: 34px;
}
.zmost-popular-wrap {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: auto;
}
.product-block .plan-name {
    color: #333;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 15px;
}
@media screen and (max-width: 1500px) {
    .product-block .plan-name {
        font-size: 16px;
    }
}
.product-block .plan-name {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
.product-block .price {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
.product-block .price span {
    color: #000;
    font-size: 52px;
    line-height: 1;
}
.product-block .price span:first-child {
    position: relative;
    top: -20px;
    font-size: 28px;
}
.zmost-popular {
    background: transparent linear-gradient(108deg, #f2ff95 0, #d0fd6a 100%) 0 0 no-repeat padding-box;
    margin-bottom: 0;
    top: 0;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    position: relative;
    left: 0;
    display: inline-block;
    padding: 3px 12px;
}
a.trynow-plan {
    color: #f0483e;
    display: inline-block;
    font-size: 13px;
    padding: 12px 15px;
    box-sizing: border-box;
    text-transform: uppercase;
    width: auto;
    border: 1px solid #f0483e;
    line-height: 1;
    min-width: 180px;
    text-align: center;
    border-radius: 5px;
}
.feature-specs ul li {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    position: relative;
    color: #000;
}
.feature-specs ul li {
    padding-left: 20px;
}
.feature-specs ul li {
    font-size: 14px;
    font-family: var(--zf-primary-medium);
}
.feature-specs .item-list:first-child {
    border-bottom: 1px solid #d6d6d6;
}
.feature-wrap .item-list {
    padding: 10px 0;
}
.feature-specs {
    padding: 5px 10px;
    display: block;
}
.feature-specs td{
    font-size:14px;
    font-family: var(--zf-primary-medium);
}
.zmore-features, .product-block .price span.ztogglegroup-mobile, .z-plustax-mobile {
    display: none;
}
@media only screen and (max-width: 767px) {
    .zmore-features {
        display: block;
        cursor: pointer;
        padding: 0 20px 20px 20px;
        text-align: center;
        color: #03a9f5;
        font-family: var(--zf-primary-semibold);
        font-size: 15px;
    }
}
.has-tooltip>span.price-tooltip, #zpdf-title {
    display: none;
}
.feature-specs ul li:before {
    content:"";
    position: absolute;
    top: 8px;
    left: -5px;
    height: 4px;
    width: 10px;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(-55deg);
}
.feature-specs ul li:before {
    transform: rotate(-45deg);
}
.feature-specs ul li.none:before {
    content:none;
}




.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border-radius: 8px;
    color: #000;
  }

  .pricing-table thead {
    background-color: #0d6efd;
    font-weight: 600;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }

  .pricing-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .pricing-table tbody tr:hover {
    background-color: #f1f1f1;
  }

  .tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    font-weight: bold;
    color: #0d6efd;
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%; 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  @media screen and (max-width:768px) {
  .clients-logo{

  }
}



/******************Responsive-css********************/









/******************google-review********************/


.google-review-card {
    background: #ffffff;   /* â† pehle jaisa background */
    color: #000;           /* text readable rahe */
    padding: 20px;
    border-radius: 12px;
    height: 100%;
  }
  
  .review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review-name {
    font-weight: 600;
    font-size: 15px;
  }
  
  .review-count {
    font-size: 13px;
    color: #6c757d;
  }
  
  .review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .stars {
    color: #fbbc04;
    font-size: 14px;
  }
  
  .time {
    font-size: 13px;
    color: #6c757d;
  }
  
  .review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
  }
  
  .more {
    color: #1a73e8;
    cursor: pointer;
  }


  .case-study a {
    display: block;
    text-align: left;
    width: fit-content;
    padding-bottom: 2px;
    background-image: linear-gradient(#333 0 0);
    background-position: 0 100%;
    /*OR bottom left*/
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition:
        background-size 0.3s,
        background-position 0s 0.3s;
    /*change after the size immediately*/
}

.case-study a:hover {
    background-position: 100% 100%;
    /*OR bottom right*/
    background-size: 100% 2px;
}

.case-study .client-logo {
    width: 300px;
}
.case-study h1{
    font-size:22px;
}
.case-study h2{
    font-size: 26px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    padding-bottom: 25px;
    text-underline-offset: 12px;
}
.case-study h4{
    font-size:18px;
}
.case-study ul{
    margin-left: 29px;
}
.case-study ul li{
    list-style: decimal-leading-zero;
    padding-left: 10px;
}
.case-study img{
    border: 2px solid #D4AF37;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}
.case-study strong{
    font-size:22px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

/******************google-review********************/