/*
Theme Name: Futurism
*/

/* Common CSS
--------------------------------------------- */
:root {
  --white: #fff;
  --black: #000;
  --black50: rgb(0 0 0/50%);
  --black2727: #272727;
  --purple51227A: #51227A;
  --purple7E3B8C: #7E3B8C;
  --blue4732CD: #4732CD;
  --border: #e0e0e0;
  --card-radius: 10px;
  --section-pad-top: clamp(30px, 4vw, 90px);
  --section-pad-bottom: clamp(30px, 6vw, 90px);
  
  --purple:      #6b2d8b;
  --purple-lt:   #f3eef7;
  --purple-md:   #8b3daa;
  --card-border: #e0d8ec;
  --text-dark:   #1a1a1a;
  --text-muted:  #999;
  --bg:          #eeebf4;
  --gap:         20px;
  
    --grad-start: #821f9b;
      --grad-mid: #7b5899;
      --grad-end: #9a90aa;
      --card-bg: #ffffff;
      --text-dark: #2d2d2d;
      --text-muted: #888;
      --star-color: #f7931e;
}

html {
  margin-top: 0px !important;
}

body {
  font-family: "Wix Madefor Display";
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  color: #000;
  overflow: unset;
}

.custom-container {
  max-width: 90%;
  margin: 0 auto;
}

h1 {
  font-size: 55px;
  font-family: "Wix Madefor Display";
  line-height: 1.2;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

h2 {
  font-size: 45px;
  font-family: "Wix Madefor Display";
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000
}

h3 {
  font-size: 26px;
  font-family: "Wix Madefor Display";
  line-height: 1.3;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px
}

h4{
  font-size: 22px;
  font-family: "Wix Madefor Display";
  line-height: 1.3;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px 
}

p {
  font-size: 16px;
  color: #000;
  font-family: "Wix Madefor Display"
}

:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}

.btn-primary {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 250px;
    max-width: fit-content;
    background-color: var(--purple7E3B8C); /* base color */
    color: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    line-height: 24px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s ease;
}

.btn-primary:hover{
    background:var(--blue4732CD);
    box-shadow: 0px 3px 32px #4732CD75;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--purple7E3B8C); /* overlay color */
    border-radius: 50px;
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
    width: 0%;
}

.btn-primary:after {
    content: '';
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    flex: 0 0 auto;
    background-image: url("./imbc/images/right-arrow-with-white-circle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.5s ease, background-image 0.3s ease;
}

.btn-primary:hover:after {
    background-image: url("./imbc/images/right-arrow-with-white-circle2.svg");
}


.btn-secondary {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 250px;
    max-width: fit-content;
    background-color: var(--blue4732CD);
    color: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    line-height: 24px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s ease;
}

.btn-secondary:hover{
    background:var(--purple7E3B8C) !important;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue4732CD);
    border-radius: 50px;
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover::before {
    width: 0%;
}

.btn-secondary:after {
    content: '';
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    flex: 0 0 auto;
    background-image: url("./imbc/images/right-arrow-with-white-circle2.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.5s ease, background-image 0.3s ease;
}

.btn-secondary:hover:after {
    background-image: url("./imbc/images/right-arrow-with-white-circle.svg");
}

.view-all-btn {
    position: relative;
    border: 2px solid var(--blue4732CD);
    padding: 8px 8px 8px 24px;
    border-radius: 30px;
    color: var(--blue4732CD);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: 0.5s all ease;
}

.view-all-btn:hover {
    background: var(--blue4732CD);
    color: var(--white);
}

.view-all-btn:after {
    content: '';
    position: relative;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    background-image: url("./imbc/images/right-arrow-with-circle.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s all ease;
}

.view-all-btn:hover:after {
    background-image: url(./imbc/images/right-arrow-with-white-circle2.svg);
}

.view-all-btn-2 {
    position: relative;
    border: 2px solid var(--purple7E3B8C);
    padding: 8px 15px;
    margin-bottom: 10px;
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: 0.5s all ease;
}

.view-all-btn-2:hover {
    background: linear-gradient(45deg, var(--blue4732CD), var(--purple7E3B8C));
    color: var(--white);
    border-color: transparent
}

.read-more-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--purple7E3B8C);
    border-radius: 50px;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.read-more-btn:hover {
    text-decoration: underline;
    color: var(--purple7E3B8C);
}

.read-more-btn svg {
    flex: 0 0 auto;
    margin-top: 8px;
}

.read-more-btn-2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--blue4732CD);
    padding: 12px 30px;
    margin-bottom: 16px;
    /*border: 1px solid #c1c1c1;*/
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/*.read-more-btn-2:hover::after {*/
/*    content: '';*/
   
/*    background-color: var(--blue4732CD);*/
/*    border-radius: 50%;*/
/*}*/

.read-more-btn-2:after {
    content: '';
    position: relative;
    width: 16px;
    height: 16px;
    padding: 12px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-color: var(--blue4732CD);
    border-radius: 50%;
}

.read-more-btn-2:hover,
.read-more-btn-2:focus{
    background-color: var(--purple7E3B8C);
    color: #fff;
}

.page-title{
   font-size: 45px; 
}

.section-title {
  font-family: "Wix Madefor Display";
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  z-index: 1;
}

.sub-title {
  font-size: 16px;
  color: #707070;
  font-weight: 500;
  word-spacing: 3px;
  z-index: 1;
}

.sm-title-1 {
  font-weight: normal;
  font-size: 18px;
  color: #575252;
}

.sm-title-2 {
  font-size: 20px;
}

.list-style{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
    
.list-style li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.list-style li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--purple7E3B8C);
    border-radius: 50%;
}

.fa-retail{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/retail-industry.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-manufacturing{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/factory-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-healthcare{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/healthcare-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-telecom{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/telecom-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-real-estate{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/real-estate-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-automotive{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/automotive-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.fa-transportation{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/transportation-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.fa-ecommerce{
    width: 40px;
    height: 40px;
    background-image: url("./imbc/images/icons/ecommerce-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.top-padding {
  padding-top: var(--section-pad-top);
}

@media (min-width: 2561px) and (max-width: 80000000px) {

  body,
  html {
    position: relative;
    width: 1920px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.24) !important;
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.24) !important;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.24) !important;
  }

  header {
    width: 1920px !important;
  }

  .header {
    width: 1920px !important;
    margin: auto;
  }
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }
  
  .section-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    
    .sub-title{
        font-size: 14px;
    }
    
    .sm-title-2{
       font-size: 18px; 
    }
}


/* Owl Carousel Styles
--------------------------------------------- */
/* Slide */
.owl-carousel .owl-slide {
    position: relative;
    height: 100vh;
    background-color: lightgray;
}

/* Nav container */
.owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    margin: auto;
    gap: 20px;
}

/* Shared nav button styles */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple51227A);
    border-radius: 50%;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.owl-carousel .owl-nav .owl-prev::before {
    content: '';
    width: 25px;
    height: 25px;
    background: url("./imbc/images/left-white-arrow.svg") no-repeat center;
}

.owl-carousel .owl-nav .owl-next::before {
    content: '';
    width: 25px;
    height: 25px;
    background: url("./imbc/images/right-white-arrow.svg") no-repeat center;
}

.owl-carousel .owl-nav button:hover {
    background: var(--purple51227A);
}

.owl-carousel .owl-nav button:active {
    transform: scale(0.9);
    background: var(--purple51227A);
}

.owl-carousel .owl-nav button:focus {
    outline: none;
}

/* Disabled state */
.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    border: 1px solid #C6BFBF;
}

.owl-carousel .owl-nav .owl-prev.disabled::before {
    background-image: url("./imbc/images/left-arrow.svg");
}

.owl-carousel .owl-nav .owl-next.disabled::before {
    background-image: url("./imbc/images/left-arrow.svg");
    transform: rotate(180deg);
}

.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span {
    display: none;
}

.custom-nav button.prev.disabled,
.custom-nav button.next.disabled {
    opacity: 0.5;
    background: #f3f3f3;
    cursor: not-allowed;
}

.custom-nav button.prev.disabled svg rect,
.custom-nav button.next.disabled svg rect {
    stroke: #c6bfbf;
    fill: transparent;
}

.custom-nav button.prev.disabled svg path,
.custom-nav button.next.disabled svg path {
    fill: #c6bfbf;
}

/* Dots */
.owl-dots {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 18px;
}

.owl-dot {
    display: inline-block;
    margin-right: 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    background: #000;
    transition: background 0.2s ease;
}

.owl-carousel .owl-dots .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span {
    background: #83249e;
}

.owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar .progress {
    width: 0;
    height: 100%;
    background: var(--purple7E3B8C);
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .owl-carousel .owl-nav button {
        width: 35px;
        height: 35px;
    }
    
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    
    .owl-carousel .owl-nav .owl-next::before{
        width: 20px;
        height: 20px;
    }
}


/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
  display: block;
  left: auto;
}

.main-navigation li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}


@media screen and (min-width: 37.5em) {

  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
  }
}

/*----------------------- Header CSS --------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  background: #fff;
  transition: 0.5s ease;
  z-index: 999;
}

.site-header.active {
  box-shadow: 0 6px 20px #bfbfbf;
}

/* Navbar Base */
.navigation-bar .navbar {
    padding: 10px 20px;
    background: #F1F1F1;
    z-index: 9999;
}

.navbar-brand img {
    max-width: 130px;
    height: auto;
}

/* Nav Links */
.mega-dropdown-row{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mega-dropdown-row .mega-dropdown-col {
    flex: 0 0 calc(20% - 16px);
    max-width: calc(20% - 16px);
}

.navbar-nav>li>a {
    color: #000;
    font-size: 15px !important;
    font-weight: 500;
    padding: 12px 15px;
    transition: 0.3s ease;
}

.nav-item.dropdown.mega-dropdown.open a.nav-link {
    color:var(--blue4732CD);
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus {
    color: #000;
}

.mega-dropdown-menu {
    display: none;
}

.mega-dropdown-menu.show {
    display: block;
}


.affix{top:0;width:100%;z-index:5!important}
.affix+.container-fluid{padding-top:30px}
.tabs-section{z-index:1}
.grecaptcha-badge{display:none!important}

p.subtitle{
     display: block;
    font-size: 26px;
    font-family: "robotolight";
       color: black;
}
.contact_no {
    display: none;
}
.mylivechat_buttonround {
    transform: scale(0.6) !important;
    left: 83px !important;
    top: -25px !important;
}
.mylivechat_closebtn {
    width: 30px !important;
    height: 30px !important;
    margin: 10px 20px !important;
}
.new-menu .open>.dropdown-menu{
    overflow-y: auto;
    height:100%;
}
.mega-dropdown-menu.solutions-dropdown-menu .dropdown-header {
    text-wrap: wrap;
}
.mega-dropdown-menu.solutions-dropdown-menu>li>ul .solution-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    word-break: break-word;
    color: #fff;
} 
.mega-dropdown-menu.solutions-dropdown-menu>li>ul .solution-link i{
    flex: 0 0 auto;
}

.text-menus-head .text-menus-title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 28px;
    color: #c5c0c0;
}

.head-menus-qot p{
    color: #fff;
}

ul#menu-industries{
    display: flex;
    flex-wrap: wrap;
}

ul#menu-industries li {
    flex: 0 0 25%;
    max-width: 25%;
}

ul#menu-industries li a{
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-menu .mega-dropdown-menu .dropdown-header{
    min-height: 50px;
    text-wrap: wrap;
}

.mega-dropdown-menu.dropdown-menu .divider{
    margin-bottom: 20px;
}

.gtranslate_wrapper .gt_float_switcher{
    box-shadow: none;
}

.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
    display: flex;
    align-items: center;
}

.gt_float_switcher .gt_options{
    z-index: 9999;
}

@media (min-width: 1720px){
    .new-menu .mega-dropdown-menu .dropdown-header{
        min-height: auto;
    }
}

@media (max-width: 767px){
    .mega-dropdown-menu.solutions-dropdown-menu>li>ul .solution-link {
        color: #fff;
        font-size: 12px;
        margin-bottom: 5px;
    }
    .new-menu .mega-dropdown-menu .dropdown-header{
        min-height: auto;
    }
    ul#menu-industries{
        display: inline-block;
    }
    
    ul#menu-industries li {
        max-width: 100%;
    }
    
}


/* Mega Menu Desktop */
@media (min-width: 992px) {

    .mega-dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        top: 100%;
        border-radius: 0;
        display: none;
        position: absolute;
        background: #fff;
    }

    .mega-dropdown-menu .dropdown-header {
        position: relative;
        font-size: 16px;
        font-weight: 700;
        padding-bottom: 12px;
        margin-bottom: 12px;
        color: #fff;
        border-bottom: 1px solid #fff;
    }
    
    .mega-dropdown-menu ul li {
        margin-bottom: 8px;
        list-style: none;
    }

    .mega-dropdown-menu ul li a {
        font-size: 14px;
        padding: .5rem 1rem;
        display: inline-block;
        color: #fff;
        text-decoration: none;
        
    }

    .mega-dropdown-menu ul li a:hover {
        color: #fff ;
    }
}

@media (max-width: 992px) {

    .navbar-toggler {
        border: none;
        color: #000;
        font-size: 26px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0 ;
        bottom: 0;
        width: 75%;
        height: 100%;
        max-height: inherit;
        background: linear-gradient(to bottom,rgba(85,34,119,.96) 0,rgba(180,65,194,.96) 51%,rgba(180,65,194,.96) 53%,rgba(180,65,194,.96) 100%);
        padding: 20px;
        margin-top: 0px;
        border-radius: 0px;
        overflow-y: auto;
        z-index: 999999;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 14px 10px;
        color: #fff;
        font-size: 16px;
        text-wrap: auto;
    }
    
    /* Dropdown menu mobile */
    .dropdown-menu,
    .mega-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        border: none;
        box-shadow: none;
        background: #1c1c1c;
        padding: 15px;
        margin: 0;
        display: none;
    }

    .dropdown-menu.show,
    .mega-dropdown-menu.show {
        display: block;
    }

    /* Stack all columns */
    .mega-dropdown-menu .row > div,
    .mega-dropdown-menu .col-lg-3,
    .mega-dropdown-menu .col-lg-4,
    .mega-dropdown-menu .col-md-6,
    .mega-dropdown-menu .col-sm-12 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .mega-dropdown-menu .dropdown-header {
        color: #fff;
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 700;
        text-wrap: auto;
        border-bottom: 1px solid;
        padding:0;
        padding-bottom: 10px !important;
        margin-bottom: 10px;
    }
    
    .mega-dropdown-row{
        display: inline-block;
        width: 100%;
    }
    
    .mega-dropdown-row .mega-dropdown-col{
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .mega-dropdown-menu ul {
        padding-left: 0;
        margin: 0;
    }

    .mega-dropdown-menu ul li {
        list-style: none;
        margin-bottom: 8px;
    }

    .mega-dropdown-menu ul li a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        display: block;
        padding: 6px 0;
    }
    
    .nav-item.dropdown.mega-dropdown.open a.nav-link{
         color: #fff;
    }

    .mega-dropdown-menu ul li a:hover {
        color: #fff;
    }
    
    .navbar-nav>li>a,
    .navbar-nav>li>a:hover,
    .navbar-nav>li>a:focus {
        color: #fff;
    }

    .btn-close {
        display: flex;
        justify-content: flex-end;
        filter: invert(1);
    }

    .gtranslate_wrapper {
        margin-top: 15px;
    }
    
    .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
        filter: brightness(100) !important;
    }
    
    .navigation-bar .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code,
    .navigation-bar .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang{
        color: #fff !important;
        border-left:none;
    }
}

@media (max-width: 576px) {

    .navigation-bar .navbar {
        padding: 8px 15px;
    }

    .navbar-brand img {
        max-width: 130px;
    }
    
    .mega-dropdown-row{
        display: inline-block;
    }
    
    .mega-dropdown-row .mega-dropdown-col {
        max-width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }
    
    .nav-item.dropdown.mega-dropdown.open a.nav-link{
         color: var(--white);
    }

    .mega-dropdown-menu {
        padding: 10px;
    }
    
    .navigation-bar.sidenav #slide-navbar-collapse{
        padding-top: 30px !important;
    }
    
    .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
        filter: brightness(100) !important;
    }
    
    .nav-item .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang{
        color: #fff !important;
    }
}


/* Footer CSS
--------------------------------------------- */

.enquiry-section {
  overflow: hidden;
}

.enquiry-details {
  position: relative;
  padding: 70px 70px 70px 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
}

.enquiry-details:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: var(--purple7E3B8C);
  z-index: -1;
}

.enquiry-details>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.enquiry-details>ul>li {
  display: flex;
  align-items: self-start;
  color: #fff;
  gap: 16px;
  margin-bottom: 50px;
}

.enquiry-details ul>li>i {
  font-size: 30px;
}

.enquiry-details ul i.fa.fa-envelope-o {
  font-size: 25px;
}

.enquiry-details h3 {
  color: #fff;
}

.enquiry-form {
  padding: 40px 0;
  position: relative;
}

.enquiry-form:before {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 100vw;
  height: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px #bfbfbf;
  z-index: 0;
}

.enquiry-form .form_enqiy{
    background:transparent;
    margin-top:0;
    box-shadow: none;
}

.enquiry-form .group,
.enquiry-form .form-group {
  position: relative;
  margin-bottom: 26px;
}

.enquiry-form .group:before,
.enquiry-form .form-group:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #dbdbdb;
}

.enquiry-form .group input,
.enquiry-form .form-group select,
.enquiry-form .group textarea {
  position: relative;
  font-size: 12px;
  padding: 10px 0;
  display: block;
  width: 100%;
  border: none;
  box-shadow: none;
  color: #000;
  background-color: transparent;
  background-color: none;
  min-height: 45px;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-control:focus-visible,
.enquiry-form input {
  border-color: none !important;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.enquiry-form input:focus {
  border-bottom: 2px solid #bc02c9;
}

.enquiry-form input[type="checkbox"] {
  min-height: auto;
  cursor: pointer;
}

.enquiry-form .bar {
  position: relative;
  display: block;
  width: 100%;
}

.explore-section .form-control {
  width: 100% !important
}

.enquiry-form .mylabel {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  top: 10px;
  transition: .2s ease all;
  -moz-transition: .2s ease all;
  -webkit-transition: .2s ease all;
}

.enquiry-form input:focus~.mylabel,
input:valid~.mylabel {
  top: -12px;
  font-size: 14px;
  color: #000;
}

.enquiry-form1 input:focus~.mylabel,
input:valid~.mylabel {
  font-size: 14px;
  color: #000;
}

.enquiry-form .highlight {
  position: absolute;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: .5;
}

.highlight {
  color: #fff;
  padding: 20px 0;
  font-weight: 700;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 48px;
}

button#enquiry-submit-btn {
  font-size: 16px !important;
  font-family: "Wix Madefor Display";
  font-weight: 400;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  border: 1px solid #000000;
  padding: 12px;
  border-radius: 7px;
  display: inline-block;
  width: auto;
  min-width: 130px;
  background-color: #fff;
  background-image: none;
  position: relative;
}

button#enquiry-submit-btn:hover,
button#enquiry-submit-btn:focus{
  color: #fff;
  background-color: var(--purple51227A) !important;
  border: 1px solid var(--purple51227A);
  box-shadow:none;
}

@media screen and (max-width: 992px) {
  .enquiry-section {
    padding: 0px;
  }

  .enquiry-details {
    padding: 20px;
    min-height: auto;
  }

  .enquiry-details:before {
    width: 100%;
  }
  .enquiry-form h3{
     padding: 0 25px; 
  }
  
  .enquiry-form:before {
    left: 0px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
    .enquiry-section {
        padding: 30px 0px 0;
    }
    
    .enquiry-details h2 {
        font-size: 26px;
    }
    
    .enquiry-details h3 {
        color: #fff;
        font-size: 20px;
    }
    
    .enquiry-details>ul>li{
        margin-bottom: 20px;
    }
    
    .enquiry-details ul>li>i {
        font-size: 20px;
        margin-top: 3px;
    }
    
    .form_enqiy{
        padding: 20px;
    }
}

/*Partners css*/
.partners {
  padding: 20px 0;
}

.partners .item {
  max-width: 200px;
  padding: 16px;
}

.parnter-carousel.owl-carousel .owl-item img {
  max-height: 80px;
}

@media screen and (max-width: 992px) {
  .partners {
    padding: 30px 0;
  }
}

/*Newsletter css*/
section.newsletter {
  position: relative;
  z-index: 1;
}

.newsletter-row {
  padding: 30px;
  background: var(--purple7E3B8C);
}

.newsletter-row .input-group input {
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  width: 50%;
  min-height: 60px;
  margin-right: 30px;
  flex: none;
  padding: 18.5px !important;
}

.newsletter-row input#email::placeholder {
  font-weight: 400;
  opacity: 1;
  color: #fff;
}

.newsletter-row input#email:focus-visible,
.newsletter-row input#email:focus {
  outline: none;
  box-shadow: none;
}

.newsletter-row .input-group input::placeholder {
  color: #fff;
}

.newsletter-row .input-group input::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #fff;
}

.subscribe_btn {
  background: transparent;
  border: 1px solid #fff !important;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px !important;
  font-family: var(--text-font-family);
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px !important;
  transition: 0.5s all ease;
}

.subscribe_btn:hover {
    color: var(--purple7E3B8C);
    background: #fff;
}

.subscribe_btn>i {
  color: #fff;
  font-size: 16px;
  transition: 0.5s all ease;
}

#newsletter .newsletter-row .input-group input#email:focus {
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .newsletter-row input.form__email {
    margin: 20px 0;
  }

  .newsletter-row .input-group input {
    width: 100%;
    margin: 0px;
  }

  .newsletter-row .input-group-btn {
    width: 100%;
    margin: 30px 0 0;
  }

  .newsletter-sect {
    display: flex;
    flex-wrap: wrap;
  }

  .newsletter img {
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
    .newsletter-row {
        padding: 20px;
    }
}

/*main footer css*/
.site-footer {
  padding: 100px 0 0;
  position: relative;
  margin-top: -60px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #090521;
  z-index: -1;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.footer-links {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links .title-link,
.site-footer .social-icons h4 {
  font-size: 20px;
  font-family: "Wix Madefor Display";
  color: #fff;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer-links li a {
  color: #989898;
  font-size: 16px;
  font-family: "Wix Madefor Display";
  display: inline-block;
  padding: 3px 0;
  text-decoration: none;
  text-align: left;
  width: 100%;
}

.footer-links>li>.title-link {
  pointer-events: none;
}

.call_us_text {
  color: #fff;
  font-size: 16px;
  font-family: "Wix Madefor Display";
  display: inline-block;
  padding: 3px 0;
  text-decoration: none;
}

.call_us_text:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #939698;
  margin: 5px 5px 5px 0;
  text-align: center;
  font-size: 19px;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.social-icons svg {
  width: 24px;
  margin-bottom: 8px;
}

.social-icons a:hover svg path {
  fill: #fff;
}

.social-icons .facebook-icon svg {
  width: 10px;
}

footer .copyright,
footer .copyright a {
  color: #fff;
  font-size: 16px;
  font-family: "Wix Madefor Display";
  text-align: center;
  margin: 0;
  border-top: 2px solid #373251;
}

@media screen and (min-width: 1024px) {
  .social-icons a {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {

  .services-menu-links .title-link,
  .solutions-menu-links .title-link,
  .home-menu-links .title-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    text-align: left;
  }
  
  .footer-links .title-link,
  .site-footer .social-icons h4 {
    font-size: 18px;
  }

  .services-menu-links > .title-link:after,
  .solutions-menu-links > .title-link:after,
  .home-menu-links > .title-link:after {
    content: '+';
    width: auto;
    display: inline-block;
    font-size: 28px;
    color: #fff;
    height: 30px;
  }
  
  .services-menu-links > .title-link.active:after,
  .solutions-menu-links > .title-link.active:after,
  .home-menu-links > .title-link.active:after{
      content: '-';
  }
  
  .site-footer .footer-links li a{
      padding: 10px 0;
  }

  footer.site-footer .call-us-footer-section,
  footer.site-footer .social-icons,
  footer.site-footer .newsletter {
    text-align: left;
  }
}


/* Home Page CSS
--------------------------------------------- */
.home-banner-sect {
  position: relative;
  padding: 50px 0;
  background-image:url('./imbc/images/digital-marketing-bg-banner.webp');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.home-banner-text{
  position: relative;
  /*min-height: 600px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-gradient {
    background-image: linear-gradient(
        45deg,
        #4ad2ff,
        #2200ff 50%,
        #ff1fe1 80%
    );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.home-banner-sect h1 {
  font-size: 65px;
  line-height: 1.2;
  color: #000;
  margin-top: 0;
}

.home-banner-sect .sub-title {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

lottie-player {
    background: transparent;
}

.home-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    display: block;
}

.home-banner-video::-webkit-media-controls {
    display: none !important;
}

.home-banner-sect .video-wrapper {
  display: inline-block;
  position: relative;
  top: 0%;
  left: 0%;
  transform: translate(0%, 0%);
}

.home-banner-sect .video-wrapper .waves {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgb(126 59 140 / 60%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: 68px;
  bottom: -25px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.home-banner-sect .video-wrapper .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.home-banner-sect .video-wrapper .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }

  100% {
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.home-banner-sect .video-wrapper .video-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.home-banner-sect .video-wrapper .video .fa-play {
  color: var(--purple7E3B8C);
}

.home-banner-sect .video-wrapper .video-popup span {
  color: #fff;
  display: inline-block;
  text-decoration: none;
}


/* Video Modal */
.home-banner-sect .video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}

.home-banner-sect.video-playing .video-modal {
  display: inline-flex !important;
}

.home-banner-sect .video-inner {
  position: relative;
  width: 95%;
  margin: auto;
  aspect-ratio: 16 / 9;
}

.home-banner-sect .video-inner iframe {
  width: 100%;
  height: 100%;
}

.home-banner-sect .video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1500px) {
    .home-banner-sect h1 {
        font-size: 80px;    
    }
}

@media (max-width: 992px) {
    .home-banner-sect {
        padding: 50px 0;
        min-height: auto;
    }

    .home-banner-sect h1 {
        font-size: 40px;
    }
    
    .home-banner-gif{
        object-fit: inherit;
    }

}

/* welcome-section */
.home-welcome-section {
  padding: 60px 0 0px;
}

.custom-container-bg{
    background-image: url("./imbc/images/results-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    border-radius: 25px;
    padding: 50px;
}

.home-welcome-img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.home-welcome-img img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.home-welcome-section .video-wrapper {
  display: inline-block;
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 200px;
  height: 100px;
  transform: translate(0%, 0%);
}

.video-wrapper .home-welcome-img-cornor-shape {
    position: absolute;
    bottom:-2px;
    right:-2px;
    width: 100%;
    height:100%;
    z-index: -1;
}

.home-welcome-section .video-wrapper .waves {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: rgb(71 50 205 / 60%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.home-welcome-section .video-wrapper .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.home-welcome-section .video-wrapper .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes waves {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.2, 0.2);
    transform: translate(-50%, -50%) scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7, 0.7);
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.home-welcome-section .video-wrapper .video-popup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  transform: translate(-25px, -25px);
}

.home-welcome-section .video-wrapper .video .fa-play {
  color: var(--purple7E3B8C);
}

.home-welcome-section .video{
    position: relative;
}

.home-welcome-section .video-wrapper .video-popup span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  flex: 0 0 auto;
}


/* Video Modal */
.home-welcome-section .video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}

.home-welcome-section .video-playing .video-modal {
  display: inline-flex !important;
}

.home-welcome-section .video-inner {
  position: relative;
  top: 50%;
  width: 80%;
  transform: translateY(-50%);
  margin: auto;
  aspect-ratio: 16 / 9;
}

.home-welcome-section .video-inner iframe {
  width: 100%;
  height: 100%;
}

.home-welcome-section .video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

.home-welcome-content h2 {
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.home-welcome-content img{
    width: 40px;
}

.home-welcome-results {
    position: relative;
    padding-left: 16px;
}

.home-welcome-results:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 60px;
    background: #D2D2D2;
}

.home-welcome-content ul {
    padding: 0;
    margin: 0;
}

.home-welcome-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 10px;
}

.home-welcome-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 30px);
    height: 1px;
    background: #E9E9E9;
}

.home-welcome-content ul li:nth-last-child(-n+2)::before {
    display: none;
}

.home-welcome-content .counter {
    font-size: 22px;
    font-weight: bold;
    position: relative;
}

@media (max-width: 1500px) {
    .home-welcome-section .video-wrapper .waves{
        bottom: -25px;
    }
}

@media (max-width: 992px) {
    .home-welcome-section{
        padding:30px 0px 30px;
    }
    
    .custom-container-bg{
        padding: 20px;
        border-radius: 15px;
    }
    
    .home-welcome-section .video-wrapper{
        width: 150px;
        height: 75px;
    }
    
    .home-welcome-section .video-wrapper .video-popup span{
        display:none;
    }
    
    .home-welcome-img img {
        width: 100%;
    }
    
    .home-welcome-content ul li:before{
        width: 100%;
    }
    
    .welcome-content ul li:nth-last-child(-n+2)::before {
        display: block;
    }
    
    .home-welcome-content ul li:last-child::before {
        display: none;
    }
    
    .home-welcome-results:before{
        height: 100%;
    }
}


/* digital-experience-section */
.digital-services-sect {
    position: relative;
    padding: 50px 0 50px;
}

.digital-services-tabs .owl-stage {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    padding-left: 0 !important;
}

.digital-services-tabs .nav-item {
    position: relative;
    height: 100%;
}

.digital-services-tabs .owl-item:not(.active) .nav-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #fff 60%);
    z-index: 1;
}

.digital-services-tabs .tab-btn {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #E3E3E3;
    transition: 0.5s all ease;
}

.digital-services-tabs .tab-btn.active{
    box-shadow: 0px 0px 22px #d2d2d2;
    border-color: transparent;
}

.digital-services-tabs .tab-btn.active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: #A623A5;
    border-radius: 50px;
}

.digital-services-tabs-box {
    position: relative;
    padding: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s all ease;
}

.digital-services-tabs-box-icon{
    flex: 0 0 auto;
}

.digital-services-tabs-box-icon img {
    width: 50px;
    height: 50px;
}

.digital-services-tabs .tab-btn.active .digital-services-tabs-box-text{
    color: var(--purple7E3B8C);
}

.digital-services-tab-content-box-text {
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.digital-services-tab-content-box-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 100px);
    height: 100%;
    background: #E2E3FF;
    border-radius: 15px;
    z-index: -1;
}

.digital-services-tab-content-box-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.digital-services-tab-content-box-text ul li {
    flex: 0 0 calc(50% - 16px);
}

.digital-services-tab-content-box-text svg{
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
}

.digital-services-tab-content-box h3 {
    color: #000;
    font-weight: bold;
    margin-bottom: 8px;
}

.digital-services-tab-content-box h4 {
    position: relative;
    font-family: "Wix Madefor Display";
    font-size: 21px;
    font-weight: 600;
    color: var(--purple7E3B8C);
    padding-bottom: 10px;
}

.digital-services-tab-content-box h4:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: #e1e1e1;
}

.digital-services-tab-content-img{
    position: relative;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

.digital-services-tab-content-img img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 25px;
    z-index: 1;
}

.digital-services-tab-content-img-overlay{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 200px;
    height: 100px;
    /*padding: 5% 2% 2% 5%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #E2E3FF;*/
    border-radius: 0px;
    z-index: 1;
    
}

/*.digital-services-tab-content-img-overlay:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom:0px;*/
/*    right:-1px;*/
/*    width: 100%;*/
/*    height:100%;*/
/*    background-image: url(./imbc/images/Icon-Cornor-Design.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    z-index: -1;*/
/*}*/

.digital-services-tab-content-img-cornor-shape{
    position: absolute; 
    right: -2px;
    bottom: -2px;
    width: 200px;
    height: 100px;
}

.digital-services-tab-content-cta {
    position: relative;
    height: 100%;
    font-size: 16px;
    color: #000; 
    padding:25px 10px 10px 25px;
    justify-content: center;
    flex: 1;
    gap: 10px;
}

.digital-services-tab-content-cta:hover{
    color:var(--purple7E3B8C);
}

.digital-services-tab-content-cta svg {
    flex: 0 0 10%;
}


.digital-services-tabs .owl-nav::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(90deg, #fff 40%, #00000000 100%);
    z-index: 0;
}

.digital-services-tabs .owl-nav.hide-before::before{
    display: none;
}

.digital-services-tabs .owl-nav button.disabled{
    opacity: 0;
}

.digital-services-tabs .owl-nav button.owl-prev{
    position: absolute;
    left: 0;
    top: calc(50% - 0px);
    transform: translateY(-50%);
}

.digital-services-tabs .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: calc(50% - 0px);
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .digital-services-sect{
        padding: 30px 0 50px;
    }
    
    .digital-services-tab-content-box-text{
        padding: 20px;
    }
    
    .digital-services-tab-content-box-text:before{
       width: 100%; 
    }
    
    .digital-services-tab-content-box-text ul li{
        flex: 0 0 calc(100% - 0px);
    }
}

@media (max-width: 768px) {
    .digital-services-tab-content-cta{
        font-size: 14px;
    }
    
    .digital-services-tab-content-box h3{
        font-size: 20px;
    }
}


/* ai-marketing-engine-section */
.ai-marketing-engine{
    padding:80px 0;
    background-color: var(--purple7E3B8C);
    background-image: url("./imbc/images/ai-marketing-engine-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    position: relative;
}

.ft-security-box {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    box-sizing: border-box;
}

.ft-security-box .top-content {
    max-width: 600px;
}

.ft-security-box .para {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.ai-marketing-engine-img{
    width: 100%;
    margin-top: -100px;
    height:auto;
}

.ai-marketing-engine-bottom-content {
    margin-top: -100px;
}

@media (max-width: 992px) {
    .ai-marketing-engine{
        padding: 50px 0;
    }
    
    .ai-marketing-engine-img {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    
    .ai-marketing-engine-bottom-content {
        margin-top: 30px;
    }
}


/* about-marketing-section */
.about-marketing-sect {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.about-marketing-content {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
}

@media (max-width: 992px) {
    .about-marketing-sect {
        padding: 50px 0;
    }
    
    .about-marketing-content {
        padding: 20px;
    }
}


/* why-choose-marketing-section */
.why-choose-marketing-sect {
    padding: 80px 0;
}

.why-choose-marketing-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.why-choose-marketing-img-overlay {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 60%;
    padding: 20px;
    background: #4732CD;
    border: 1px solid #c1c1c1;
    border-radius: 20px;
}

.why-choose-marketing-box {
    background: #FBE8FF;
    padding: 16px 16px 16px 0;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.5s all ease;
}

.why-choose-marketing-box:hover{
    box-shadow: 10px 0px 20px rgb(218 218 218);
}

.why-choose-marketing-box-icon {
    position: relative;
    padding: 15px 10px;
    border: 15px solid #ffffff;
    border-radius: 25px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.why-choose-marketing-box-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    background: transparent;
    border: 7px solid #fff;
    border-radius: 25px;
    transform: translate(-50%, -50%);
    z-index: 0;
}


.why-choose-marketing-box:nth-child(even) {
    background: #EFECFF;
}

.why-choose-marketing-box-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.why-choose-marketing-box-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .why-choose-marketing-sect{
        padding: 50px 0 30px;
    }
    
    .industry-expertise-item:hover{
        box-shadow: 0 6px 20px #bfbfbf;
    }
}

@media (max-width: 768px) {
    .why-choose-marketing-sect{
        padding: 50px 0 30px;
    }
    
    .why-choose-marketing-img-overlay {
        position: relative;  
        max-width: 100%;
        padding: 16px;
        margin-top: 30px;
    }
    
    .why-choose-marketing-box{
        padding: 0px 20px 20px 20px;
        flex-direction: column;
    }
    
    .why-choose-marketing-box-icon{
        border-radius: 25px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}


/* power-your-growth-section */
.power-your-growth-sect {
    background-image: url(./imbc/images/power-your-growth-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.power-your-growth-img {
    border-radius: 0 25px 25px 0;
    overflow: hidden;
}

.power-your-growth-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 0 25px 25px 0;
    z-index: 1;
}

.power-your-growth-img-overlay {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 200px;
    height: 100px;
    padding: 25px 10px 10px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.power-your-growth-img-cornor-shape {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 200px;
    height: 100px;
}

.power-your-growth-img-overlay .read-more-btn svg {
    flex: 0 0 auto;
}

.power-your-growth-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.power-your-growth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.power-your-growth-links li{
    display: inline-block; 
}

@media (min-width: 1500px) {
    .power-your-growth-img img {
        height: 700px;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .power-your-growth-content .view-all-btn-2{
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .power-your-growth-sect{
        border-radius: 0 30px 0 0;
    }
    
    .power-your-growth-img img{
        border-radius: 25px;
    }
}

@media (max-width: 768px) {
    .power-your-growth-sect{
        border-radius: 0;
    }
    
    .power-your-growth-img-overlay{
        border-radius: 15px;
    }
}

/* industry-expertise-section */
.industry-expertise-sect {
  padding: 50px 0;
}

.industry-expertise-slider .owl-stage {
  display: flex;
  padding: 30px 200px 30px 80px;
}

/*.industry-expertise-slider .owl-item:not(.active) {*/
/*    opacity: 0.5;*/
/*}*/

.industry-expertise-item {
  position: relative;
  text-align: center;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #c1c1c1;
  border-radius: 15px;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: 0.5s all ease;
}

.industry-expertise-item:hover{
   box-shadow: 0 0px 30px #bfbfbf; 
   border-color: transparent;
   height: 100%;
}

.industry-expertise-item-body{
    transition: 0.8s all ease
}

.industry-expertise-item:hover .industry-expertise-item-body {
    transform: translateY(-5px);
}

.industry-expertise-item .text-highlight {
    font-size: 13px;
    background-color: #406EF9;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 0px auto 16px;
}

.industry-expertise-slider .owl-item:nth-child(even) .text-highlight {
    background-color: var(--purple7E3B8C);
}

.industry-expertise-item h3 {
  font-family: 'Wix Madefor Display';
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #000;
}

.industry-expertise-item-footer .read-more-btn-2 {
    border: 1px solid #00000033;
}

.industry-expertise-slider .owl-item:nth-child(odd) .read-more-btn-2:hover {
    background-color: var(--blue4732CD);
}

.industry-expertise-slider .owl-item:nth-child(even) .read-more-btn-2:after {
    background-color: var(--purple7E3B8C);
}

.industry-expertise-item-footer img {
    border-radius: 15px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.industry-expertise-slider-footer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.industry-expertise-nav button.prev.disabled,
.industry-expertise-nav button.next.disabled {
    opacity: 0.5;
    background: #f3f3f3;
    cursor: not-allowed;
}

.industry-expertise-nav button.prev.disabled svg rect,
.industry-expertise-nav button.next.disabled svg rect {
    stroke: #c6bfbf;
    fill: transparent;
}

.industry-expertise-nav button.prev.disabled svg path,
.industry-expertise-nav button.next.disabled svg path {
    fill: #c6bfbf;
}

@media screen and (max-width: 992px) {
    .industry-expertise-sect{
        padding: 50px 0;
    }
}

@media screen and (max-width: 768px) {
    .industry-expertise-sect .section-title {
        font-size: 24px;
    }
    
    .industry-expertise-slider .owl-stage{
        padding: 10px 0px;
    }
    
    .industry-expertise-item{
        margin: 0 16px;
    }
    
    .industry-expertise-nav button.prev.disabled svg,
    .industry-expertise-nav button.next.disabled svg,
    .industry-expertise-nav button.prev svg,
    .industry-expertise-nav button.next svg{
        width: 40px;
        height: 40px;
    }
}


/* Our Value Proposition */
.how-we-work-sect {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-image: url("./imbc/images/how-we-work-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.how-we-work-item-main{
    counter-reset: count;
}

.how-we-work-item {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
}

.how-we-work-item:before {
    content: '';
    position: relative;
    top: 15px;
    right: 15px;
    display: inline-flex;
    width: 150px;
    height: 200px;
    background: url(https://digitalmarketing.futurismdemo.com/wp-content/uploads/2026/03/right-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: inherit;
    flex: 0 0 20%;
}

.how-we-work-item-main .how-we-work-item-col:nth-child(3n+1) .how-we-work-item::before {
    display: none;
}

.how-we-work-item-icon{
    position: relative;
    display: inline-block;
    margin: 0 auto 10px;
}

.how-we-work-item-icon:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    background: var(--purple7E3B8C);
    color: #fff;
    border-radius: 50%;
    counter-increment: count;
    content: counter(count);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.how-we-work-item-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--blue4732CD);
    border-radius: 50%;
    transition: transform 0.6s linear;
    z-index: 0;
}

.how-we-work-item-icon:hover::after {
  animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.how-we-work-item-icon:hover {
  transform: scale(1.05);
}

.how-we-work-item-icon > img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 1px;
}

.how-we-work-item-icon:hover > img{
    padding: 3px;
}

.how-we-work-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.how-we-work-carousel-footer {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.how-we-work-carousel {
    border-bottom: 1px solid #ecebeb;
    background-color: #fff;
    padding: 30px;
}

.how-we-work-carousel .owl-stage {
    display: flex;
}

.how-we-work-carousel .how-we-work-item {
    height: 100%;
    padding: 30px;
    border-radius: 0px;
    text-align: center;
    border-right: 1px solid #ecebeb;
    transition: transform 0.3s ease;
}

.how-we-work-carousel .owl-item.fourth-item .how-we-work-item {
    border: 0;
}

.how-we-work-carousel .how-we-work-item h3 {
    font-family: "Wix Madefor Display";
    font-size: 22px;
    font-weight: bold;
    text-align: left;
}

.how-we-work-carousel .how-we-work-item-icon>img {
    width: auto;
    max-height: 90px;
    margin-bottom: 30px;
    display: block;
}

.how-we-work-carousel .how-we-work-item .extra-text {
    font-family: "Wix Madefor Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 992px) {
    .how-we-work-sect {
        padding: 50px 0;
        margin: 0;
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .how-we-work-item{
        flex-direction: column; 
    }
    
    .how-we-work-item:before{
        width: 70px;
        height: 70px;
        top: 0;
        margin-bottom: 30px;
        transform: rotate(-70deg);
        background-position: center;
        flex: auto;
    }

    .how-we-work-item-main .how-we-work-item-col:nth-child(3n+1) .how-we-work-item::before {
        display: block;
    }
    
    .how-we-work-item-main .how-we-work-item-col:first-child .how-we-work-item::before{
        display: none;
    }
    
    .how-we-work-item h3{
        font-size: 18px;
    }
}


/* marketing-services-stand */
.marketing-services-stand-sect {
    padding:50px 0; 
    overflow:hidden;
}

.marketing-services-stand-container{
    padding: 50px 0px 50px 50px; 
    background-image:url("./imbc/images/marketing-services-stand-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 95%;
    margin: 0 0 0 auto;
}

.our-onlinemarketing-subtitle{
    font-size: 18px;
    font-weight: 500;
}

.marketing-services-stand-slider .owl-stage {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px !important;
    display: flex;
    counter-reset: count;
}

.marketing-services-stand-slider .owl-item{
    position: relative;
    height: inherit;
    background-color: #E9E9E9;
    border-radius: 25px;
    box-shadow: 0px 3px 6px #00000033;
    transition: 0.5s all ease;
}

.marketing-services-stand-slider .owl-item:before{
    content:'';
    counter-increment: count;
    content: counter(count, decimal-leading-zero);
    position: absolute;
    bottom: 0px;
    right: 0px; 
    width: 100px;
    height: 70px;
    font-size: 30px;
    font-weight: bold;
    color: var(--purple7E3B8C);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-services-stand-slide{
    position: relative;
    padding: 25px;
    width: 100%;
    height: 100%;
    /*--r: 25px;*/
    /*--s: 25px;*/
    /*--x: 85px;*/
    /*--y: 20px;*/
    background: #fff;
    border-radius: 25px;
    /*border-radius: var(--r);*/
    /*--_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);*/
    /*--_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);*/
    /*--_d: (var(--s) + var(--r));*/
    /*mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m), 100% calc(100% - var(--_d) - var(--y)) var(--_m), radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(-1 * var(--r) - var(--y)), var(--_g) calc(-1 * var(--_d) - var(--x)) 0, var(--_g) 0 calc(-1 * var(--_d) - var(--y));*/
    /*mask-repeat: no-repeat;*/
}

.marketing-services-stand-slide:hover{
    background-color: var(--purple7E3B8C);
    border-radius: 25px;
}

.marketing-services-stand-slide:hover::after{
    color: #fff;
}

.marketing-services-stand-slide-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--purple7E3B8C);
}

.marketing-services-stand-slide:hover .marketing-services-stand-slide-head{
    border-color:var(--white);
}

.marketing-services-stand-slider .marketing-services-stand-slide-head img {
    width: 50px;
    height: 50px;
}

.marketing-services-stand-slide:hover .marketing-services-stand-slide-head img{
    filter: brightness(0) invert(1) contrast(100%);
}

.marketing-services-stand-slide-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 0;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.marketing-services-stand-slide:hover .marketing-services-stand-slide-title,
.marketing-services-stand-slide:hover .marketing-services-stand-slide-content p{
    color: var(--white);
}

.marketing-services-stand-slide-content ul {
    padding: 0;
    margin: 0;
}

.marketing-services-stand-slide-content ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.marketing-services-stand-slide-content ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-arrow-with-white-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.marketing-services-stand-slide:hover li{
   color: var(--white); 
}

.marketing-services-stand-sect .read-more-btn-2{
    margin-bottom:0;
}

.marketing-services-stand-sect .read-more-btn-2:hover{
    color: var(--white); 
}

.marketing-services-stand-sect .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.marketing-services-stand-sect .owl-nav .owl-prev {
    margin-left: -45px;
}

@media screen and (max-width: 992px) {
    .marketing-services-stand-sect{
        padding: 50px 0;
    }
}

@media screen and (max-width: 768px) {
    .marketing-services-stand-sect{
        padding: 30px 0;
    }
    
    .marketing-services-stand-container{
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 20px 0;
        border-radius: 30px;
    }
    
    .marketing-services-stand-slider .owl-stage{
        padding-left: 0px !important;
    }
    

    .marketing-services-stand-slide{
        padding: 15px 15px;
        background-position: 70% 100%;
    }
    
    .marketing-services-stand-slide:before{
        box-shadow: 0px 0px 1px 0px #bfbfbf;
    }
    
    .marketing-services-stand-slide-title{
        font-size: 18px;
    }
    
    .marketing-services-stand-slide-content,
    .marketing-services-stand-slide-content p{
        font-size: 14px;
    }
    
    .marketing-services-stand-slide-content ul li{
        padding-left: 30px;
    }
    
    .marketing-services-stand-slide-content ul li:before{
        width: 20px;
        height: 20px;
    }
    
    .marketing-services-stand-sect .owl-nav{
        position: relative;
        margin-top: 30px;
    }
    
    .marketing-services-stand-sect .owl-nav .owl-prev{
        margin-left: 0px;
    }
    
    .marketing-services-stand-sect .read-more-btn-2{
        padding: 0;
        text-align: left;
    }
    
}

/* testimonials section  */
.testimonials-sect {
    padding-bottom: 80px;
}

.testimonials-img{
    position: relative;
    border-radius: 25px;
    overflow:hidden;
}

.testimonials-img img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 25px;
}

.testimonials-img-overlay {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 200px;
    height: 100px;
    border-radius: 25px;
    z-index: 0;
}

.testimonials-img-cornor-shape{
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 200px;
    height: 100px;
}

.testimonials-img-overlay .read-more-btn {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #fff;
    padding: 25px 10px 10px 25px;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 10px;
}


.testimonials-item-content ul {
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.testimonials-item-content ul li {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-item-content ul li:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    padding: 12px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--purple7E3B8C);
    border-radius: 50%;
}

.testimonials-slider .fa-quote-left {
    font-size: 25px;
    margin-right: 10px;
    color: var(--blue4732CD);
}

.testimonials-slider .owl-nav {
    width: 105px;
    margin: 20px 0 0;
    gap: 10px;
}


@media screen and (max-width: 992px) {
    .testimonials-sect{
        padding: 50px 0; 
    }
    
    .testimonials-img img,
    .testimonials-img:before{
        border-radius: 25px;
    }
    
    .testimonials-slider .owl-nav{
        margin: 20px auto 0px;
    }
}

@media screen and (max-width: 767px) {
   .testimonials-sect{
        padding: 30px 0; 
    } 
}

    

/* Latest Articles section  */
.case-studies-section {
    padding: 80px 0;
    background-image: url(./imbc/images/how-we-work-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.case-studies-container{
    max-width: 95%;
    margin: 0 0 0 auto;
}

.case-studies-slider .owl-stage{
    display: flex;
    padding-left: 0 !important;
    padding-top: 30px;
    padding-bottom: 30px;
    counter-reset: count;
}

.case-studies-slider .owl-item:not(.active) .case-studies-slide{
    opacity:0.5;
}

.case-studies-slide {
    height: 100%;
    padding: 15px;
    background: #fff;
    border-radius:15px;
    border: 1px solid #E9E9E9;
    transition: 0.5s all ease;
    overflow: hidden;
}

.case-studies-slide:hover{
    box-shadow: 0 0px 20px #bfbfbf;
}

.case-studies-slide-img {
    position: relative;
}

.case-studies-slide-img>img {
  border-radius:15px;
}

.case-studies-slide-img .case-studies-slide-img-overlay {
    position: absolute;
    left: 10px;
    bottom: -20px;
    padding: 10px;
    min-width: 150px;
    max-width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    background: var(--blue4732CD);
    border-radius: 15px;
    display: inline-block;
}

.case-studies-slide-body {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.case-studies-slide-body h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom:0px;
}

.case-studies-slide-body ul {
    margin: 0;
    padding-left: 20px;
}

.case-studies-slide-body ul li {
    list-style: circle;
    margin-bottom: 10px;
}

.case-studies-slide-footer{
    position: relative;
    height: 100%;
    padding: 10px;
    /*margin: 0 -15px -15px 0;*/
    flex: 0 0 40%;
    z-index: 1;
}

.case-studies-slide-footer:before {
    width: 40px;
    height: 40px;
    font-size: 22px;
    font-weight: bold;
    color: var(--blue4732CD);
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    counter-increment: count;
    content: counter(count, decimal-leading-zero);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
}

.case-studies-slide-img-cornor-shape {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    z-index: -1;
}

.case-studies-nav .prev.disabled,
.case-studies-nav .next.disabled{
    opacity: 0.5;
    background: #f3f3f3;
    cursor: not-allowed;
}

.case-studies-nav .prev.disabled svg rect,
.case-studies-nav .next.disabled svg rect {
    stroke: #c6bfbf;
    fill: transparent;
}

.case-studies-nav .prev.disabled svg path,
.case-studies-nav .next.disabled svg path {
    fill: #c6bfbf;
}

@media screen and (max-width: 768px) {
    .case-studies-section {
        padding: 50px 0;
    }
  
    .case-studies-container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .case-studies-slider .owl-stage{
        padding-top: 0px;
        padding-bottom: 0px;    
    }
    
    .case-studies-slide-body h3{
        font-size: 16px;
    }
}


/* Futurismâ€™s Partner section  */
.futurism-partner {
  padding: 50px 0;
  position: relative;
  background-image: url("./imbc/images/futurism-partner-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.futurism-partner-info {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.futurism-partner-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.futurism-partner-info ul li {
  font-size: 24px;
  font-family: "Wix Madefor Display";
  font-weight: 600;
  margin-bottom: 16px;
}


@media screen and (max-width: 768px) {
    .futurism-partner {
        min-height: auto;
    }
  
    .futurism-partner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 50%);
    }
}


/* Breadcrumbs CSS
--------------------------------------------- */
.main-breadcrumbs {
  background-color: #4E43D9;
  padding: 10px;
  color: #fff;
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 5px;
}

.breadcrumbs li a {
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}


/* Post Listing Page CSS
--------------------------------------------- */
.post-box {
    position: relative;
    background: #fff;
    margin: 15px 0px;
    box-shadow: 0 14px 22px -9px #bbcbd8;
    border-radius: 15px;
    height: 100%;
}
.post-box .post-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}
.post-box .post-img img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    transform: scale(1, 1);
    transition: transform .2s linear;
}
.post-box:hover .post-img img {
    transform: scale(1.1, 1.1);
}
.post-box .post-content {
    background: #fff;
    padding: 20px;
}
.post-box .post-title{
    font-size: 24px;
    font-family: "Wix Madefor Display";
    line-height: normal;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.post-box .post-title a {
    font-size: 20px;
    color: #5b4ffe;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.post-box .post-title a:hover,
.post-box .post-title a:active,
.post-box .post-title a:focus-visible{
    color: #5b4ffe;
}
.post-box .post-description {
    font-size: 16px;
    color: #000;
    font-family: "Wix Madefor Display";
    margin-bottom: 0;
}
.post-box .read-more {
    position: absolute;
    bottom: 0px;
    right: 20px;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 600;
    background: #4e43d9;
    color: #fff;
    box-shadow: 0 10px 20px -10px #4e43d9;
    border: 1px solid transparent;
    border-radius: 25px;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateY(20px);
}
.post-box .read-more:hover {
    border-color: #4e43d9;
    background: #fff;
    color: #4e43d9;
}


/* Single Post Page CSS
--------------------------------------------- */
.inner-page-banner {
  position: relative;
  width:100%;
  min-height: 553px;
  display: flex;
  align-items: center;
}
.inner-page-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner-page-banner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-page-banner-info{
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
   .inner-page-banner{
       min-height: 300px;
   } 
}

.single-post-details h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0f0f1a;
}
.single-post-details .sub-title-1 h2,
.single-post-details .sub-title-2 h3,
.single-post-details .sub-title-2 h4 {
  font-size: 20px;
  font-weight: bold;
}
.single-post-details .single-post-box {
  background-color: #fff;
  border: none;
  padding: 24px;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: box-shadow ease 0.3s;
  -moz-transition: box-shadow ease 0.3s;
  -o-transition: box-shadow ease 0.3s;
  -ms-transition: box-shadow ease 0.3s;
  transition: box-shadow ease 0.3s;
  height: 100%;
  overflow: hidden;
}
.single-post-details .single-post-topic {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  text-transform: uppercase;
  color: #673ab7;
  text-decoration: none;
}
.single-post-details .media-heading {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}
.single-post-details .single-post-text {
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
}
.single-post-details .single-post-text h4,
.single-post-details .single-post-text h5 {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
}
.single-post-details .single-post-data span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
}
.single-post-details .single-post-data {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.single-post-details p {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
}
.single-post-details .single-post-box a {
  color: #673ab7;
  text-decoration: none;
}
.single-post-details .single-post-trending-title h4 {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  background-color: #9a2fbd;
  min-height: 20px;
  margin-top: 0;
  padding: 15px;
  margin-bottom: 0;
}
.trending-post {
  background-color: #f7f7f7;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.1);
}
.trending-post ul {
  list-style: none;
  padding: 0 8px;
  margin: 0;
}
.trending-post ul li a {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  color: #707070;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.trending-post ul li {
  border-bottom: 3px solid #fff;
  padding: 6px 10px;
  line-height: normal;
}
.trending-post ul li:last-child {
  border-bottom: 0;
}
.trending-post ul li a:hover {
  color: #673ab7;
  transition: all 0.5s ease;
  text-decoration: underline;
}
.single-post-details .blog-text span {
  position: static;
}
.single-post-image img{
    width:100%;
}
.post-navigation .nav-next {
    text-align: center;
}
.post-navigation .nav-next a {
    text-decoration: none;
    color: #000;
}

@media screen and (max-width: 576px) {
  .single-post-details .sub-title-1 h2,
  .single-post-details .sub-title-2 h3 {
    font-size: 20px;
  }

  .single-post-details .single-post-data span {
    position: static;
    white-space: nowrap;
    display: block;
    margin-top: 8px;
  }
}


/* Single Solution CSS
--------------------------------------------- */
.custom-hero-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}


.onlinemarketing-expertise-col .onlinemarketing-expertise-item{
    border-right: 1px solid #dee2e6;
}

.onlinemarketing-expertise-col:last-child .onlinemarketing-expertise-item,
.onlinemarketing-expertise-col:nth-child(4n) .onlinemarketing-expertise-item {
    border: 0;
}

.onlinemarketing-expertise-item-body .text-highlight img {
    width: 100%;
    height: auto;
    max-width: 20%;
    max-height: 100px;
    min-height: 100px;
    object-fit: scale-down;
}

.onlinemarketing-expertise-item-body-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.onlinemarketing-expertise-item-body-content p {
    font-size: 14px;
}

.onlinemarketing-expertise-item-body-content{
    padding: 20px 0 0px;
}

@media screen and (max-width: 768px) {
    .custom-hero-banner{
        min-height: 300px
    }
    
    .onlinemarketing-expertise-col .onlinemarketing-expertise-item,
    .onlinemarketing-expertise-col:last-child .onlinemarketing-expertise-item,
    .onlinemarketing-expertise-col:nth-child(4n) .onlinemarketing-expertise-item{
        border-right:0;
        border-bottom: 1px solid #dee2e6;
    }
    
    .onlinemarketing-expertise-item-body-content h3{
        font-size: 18px;
    }
}

/*Solutions Services section*/
.single-solution-service-section{
    padding: 30px 0 30px;
}

.single-solution-service-content .service-slide h3 {
    font-size: 20px;
}

.single-solution-service-content .tab-nav-main .tab-btn {
    background: none;
    border: none;
    padding: 10px 18px 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
    outline: none;
}

.single-solution-service-content .tab-nav-main .tab-btn.active {
    color: #111111;
}

.single-solution-service-content .tab-nav-main .tab-btn.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue4732CD);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.single-solution-services-content .tab-nav-main .tab-btn.tab-btn.active::after {
    transform: scaleX(1);
}

.single-solution-service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 15px;
}


/*who we serve section*/
.who-we-serve-slider .owl-stage {
    display: flex;
    margin-bottom: 30px;
}

.who-we-serve-card {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    height:100%;
}

.who-we-serve-card h3 {
    font: normal normal bold 20px / 28px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
}

.who-we-serve-card-icon {
    width: 80px;
    height: 80px;
}

.who-we-serve-card-icon img{
    width:100%;
    height:100%;
    object-fit: contain;
}

.who-we-serve-card .who-we-serve-card-text {
    font: normal normal normal 16px / 25px Wix Madefor Display;
    letter-spacing: 0px;
    color: #676767;
    margin-bottom: 0;
}

/*why marketing section*/
.ft_socialmedia_table th {
    background-color: #4732CD;
    color: #fff;
    font-weight: 600;
}

.ft_socialmedia_table td,
.ft_socialmedia_table th {
    padding: clamp(10px, 2vw, 10px);
}

.ft_socialmedia_table tbody tr:nth-child(even) td {
    background-color: #f5f0ff;
}

.growth-driven{
    padding: 50px 0;
}

.growth-driven-list ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--purple7E3B8C);
    border-radius: 50%;
}

.growth-driven-list ul li {
    position: relative;
    padding: 0px 0 20px 40px;;
    margin-bottom: 10px;
    list-style: none;
}

.growth-driven-list ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
    padding: 30px 0;
}

.growth-driven img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .growth-driven-list ul {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

.why-chooose{
    padding: 50px 0;
}

.why-choose-card{
    min-height: 205px;
    position: relative;
    z-index: 1;
    background-color: #F1F1F1;
    border: 1px solid #e9e9e9;
    padding: 25px;
    margin-bottom: 20px;
}

.why-choose-card-body {
    display: flex;
    border-radius: 10px;
    gap: 20px;
}

.why-choose-card-body .why-chooose-icon {
    flex: 0 0 auto;
}

.why-choose-card-body .why-chooose-text {
    margin-top: auto;
    margin-bottom: auto;
}

.why-choose-card-body .why-chooose-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.why-choose-card p {
    font-size: 14px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    
}

.our-onlinemarketing{
    padding: 50px 0;
}

.our-onlinemarketing-inner{
    background-color: #F1F1F1;
    height:100%;
}

.our-onlinemarketing-body img {
    width: 100%;
    height: auto;
    max-width: 15%;
}

.our-onlinemarketing-body-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.our-onlinemarketing-body-content p {
    font-size: 14px;
    margin: 0;
}

.our-onlinemarketing-body-content {
    padding: 20px 0 0px;
}

@media screen and (max-width: 768px) {
    
}

.the-impact-sect {
  background: var(--purple7E3B8C);
}

.the-impact-sect .accordion-item {
  margin-bottom: 18px;
  border-radius: 20px;
  border: 0;
}

.accordion-item{
    border:none;
    position: relative;
}

.accordion-item .accordion-button {
    position: relative;
    font-family: 'Wix Madefor Display';
    font-size: 18px;
    font-weight: bold;
    padding-right: 60px;
    color: var(--purple7E3B8C);
    background: transparent;
    box-shadow: none;
}

.accordion-item .accordion-button::before {
    content: "";
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: url('./imbc/images/up-arrow-with-circle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.accordion-item .accordion-button::after {
    display: none !important;
}

.accordion-item .accordion-button:not(.collapsed)::before {
    transform: rotate(0deg);
}

.accordion-item .accordion-button:focus{
    box-shadow:none;
}

.accordion-item .accordion-body{
    font-family: "Wix Madefor Display";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #616161;
    padding: 1rem 1.25rem;
}

.accordion-item .accordion-body ul {
    margin: 0;
    padding-left: 20px;
}

.accordion-item .accordion-body ul li {
    list-style: circle;
    margin-bottom: 10px;
}

.the-impact-sect .the-impact-sect-img>img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
    
}

.onlinemarketing-methodology{
    padding: 50px 0;
}

.onlinemarketing-methodology img {
    width: 100%;
    height: auto;
}

.onlinemarketing-methodology p {
    font-size: 18px;
    font-weight: 600;
}

.onlinemarketing-methodology-list ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
    padding: 10px 0;
}

.onlinemarketing-methodology-list ul li {
    position: relative;
    font-family: "Wix Madefor Display";
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    padding: 0px 0 20px 40px;;
    margin-bottom: 10px;
    list-style: none;
    color:#000;
}

.onlinemarketing-methodology-list ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--blue4732CD);
    border-radius: 50%;
}

.onlinemarketing-methodology .text-highlight {
    position: relative;
    right: 23%;
    padding: 0 0 28px;
}

.onlinemarketing-methodology .text-highlight img{
    width:100%;
    height:auto;
}

.methodology-list ul {
    padding-left: 15px;
}

.methodology-list ul li {
    position: relative;
    font-family: "Wix Madefor Display";
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    padding: 0px 0 5px 40px;;
    margin-bottom: 10px;
    list-style: none;
    color:#000;
}

.methodology-list ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-arrow-with-circle-1.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width:768px) {
    .onlinemarketing-methodology .text-highlight {  
        right: 0%;
    }  
    .onlinemarketing-methodology-list ul{
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}


/* Our Value Proposition */
.our-value-sect,
.clients-review-sect{
  position: relative;
  width: 100%;
  padding-top: 80px;
  background-image: url("./imbc/images/our-value-proposition-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.our-value-header,
.clients-review-header{
    position: relative;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*gap: 20px;*/
    color: #000;
}

.our-value-carousel-footer,
.clients-review-carousel-footer{
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.our-value-carousel-footer.hide-carousel-footer,
.clients-review-carousel-footer.hide-carousel-footer{
    display: none;
}

.our-value-carousel,
.clients-review-carousel{
    border-bottom: 1px solid #ecebeb;
    background-color: #fff;
    padding: 30px;
}

.our-value-carousel .owl-stage,
.clients-review-carousel .owl-stage{
    display: flex;
}

.our-value-carousel .our-value-item,
.clients-review-carousel .clients-review-item{
    height: 100%;
    padding: 30px;
    border-radius: 0px;
    border-right: 1px solid #ecebeb;
    transition: transform 0.3s ease;
}

.our-value-carousel .owl-item:nth-child(4n) .our-value-item,
.clients-review-carousel .owl-item:nth-child(4n) .clients-review-item{
    border: 0;
}

.our-value-carousel .our-value-item svg,
.clients-review-carousel .clients-review-item svg{
    text-align: left;
    display: flex;
    margin-bottom: 16px;
    width: 80px;
}

.our-value-carousel .our-value-item h3,
.clients-review-carousel .clients-review-item h3{
    font-family: "Wix Madefor Display";
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.our-value-carousel .our-value-item .extra-text,
.clients-review-carousel .clients-review-item .extra-text{
    font: normal normal normal 16px / 27px Wix Madefor Display;
    letter-spacing: 0px;
    color: #676767;
}
    
.our-value-carousel .our-value-item-icon>img,
.clients-review-carousel .clients-review-item-icon>img{
    width: auto;
    max-height: 90px;
    margin-bottom: 30px;
    display: block;
}

.our-value-carousel .our-value-item .extra-text,
.clients-review-carousel .clients-review-item .extra-text{
    font-family: "Wix Madefor Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 1500px) {
    .our-value-carousel .owl-item:nth-child(3n) .our-value-item,
    .clients-review-carousel .owl-item:nth-child(3n) .clients-review-item{
        border: 0;
    }
}

@media (max-width: 768px) {
    .our-value-sect,
    .clients-review-sect{
        padding: 50px 0;
        margin: 0;
        background-size: cover;
    }

    .our-value-header,
    .clients-review-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
    }

    .our-value-carousel,
    .clients-review-carousel{
        padding: 0px;
        border: 0;
    }
    
    .our-value-carousel-footer.hide-carousel-footer,
    .clients-review-carousel-footer.hide-carousel-footer{
        display: none;
    }
    
    .our-value-carousel-footer,
    .clients-review-carousel-footer{
        display: inline-flex;
    }
}


/*FAQs CSS*/
.faqs-section {
    background-image: url("./imbc/images/faqs-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0;
}

.faq-accordion-item {
    background-color: transparent;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
}

.faq-accordion-item .faq-accordion-header{
    margin-bottom: 0;
}

.faq-accordion-item .faq-question-button{
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-family: "Wix Madefor Display";
    font-weight: 600;
    line-height: 1.6;
    padding-right: 40px;
    align-items: flex-start;
    background: transparent;
}

.faq-accordion-item .faq-question-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.faq-question-button::before{
    content: "+";
    position: absolute;
    top: 0px;
    right: 10px;
    width: 35px;
    height: 100%;
    font-size: 25px;
    border-radius: 50%;
    padding: 3px;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    background: none;
    color:#808080;
}

.faq-question-button.show::before,
.faq-question-button:not(.collapsed)::before{
    content: "-";
    background: none;
    transform: none;
    color:#000;
}

.faq-accordion-item .faq-question-button:after{
    display:none;
}

.faq-accordion-item .faq-question-button:focus{
    border-color: transparent;
    box-shadow: none;
}

.faq-accordion-body{
    padding: 1rem 1.25rem;
}

.faq-accordion-item .faq-answer {
    font-size: 16px;
    font-family: "Wix Madefor Display";
    font-weight: normal;
    line-height: 1.5;
}

.faq-accordion-item .faq-answer ul {
    margin: 0;
    list-style: circle;
    padding-left: 20px;
}
.faq-accordion-item .faq-answer ul li{
   list-style: circle;
   margin-bottom: 10px; 
}

@media screen and (max-width: 992px) {
   .faqs-section {
        padding: 50px 0;
    } 
}

@media screen and (max-width:767px) {
    .faqs-section {
        padding: 30px 0;
    }
    
    .faq-accordion-item .faq-question-button{
        padding-left: 0;
    }
    
    .faq-accordion-item .faq-answer{
        padding-left: 0;
        padding-right: 0;
    }
}



/* Single Services CSS
--------------------------------------------- */

.results-showcase-section{
    padding: 50px 0;
}

.results-showcase-section .stats-grid .stat-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--white);
  height: 100%;
  transition: box-shadow 0.2s;
}

.results-showcase-section .stats-grid .stat-card:hover {
  box-shadow: 0 4px 18px rgba(91,43,224,0.10);
}

.results-showcase-section .stats-grid .stat-card .stat-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-showcase-section .stats-grid .stat-card .stat-icon svg {
  width: 80px;
  height: 80px;
}

.results-showcase-section .stats-grid .stat-card .stat-info .stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 4px;
}

.results-showcase-section .stats-grid .stat-card .stat-info .stat-label {
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
  margin: 0;
}

@media (max-width:1440px){
    .results-showcase-section .stats-grid .stat-card{
        gap:30px;
    }
    
    .results-showcase-section .stats-grid .stat-card .stat-info .stat-number {
        font-size: 24px;
    }
}
    
@media (max-width:768px){
    .results-showcase-section{
        padding:30px 0;
    }
    .results-showcase-section .stats-grid .stat-card{
        padding: 20px;
        gap: 10px;
    }
}

/* Our AEO Services */
/*.our-aeo-services {*/
/*  padding: 50px 0;*/
/*}*/

.aeo-services-accordion .accordion-item {
  background-color: #F9F9F9;
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.aeo-services-accordion .accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: #1a1a1a;
  font-weight: 600;
  padding: 20px 60px 20px 20px;
  display: flex;
  align-items: center;
}

.aeo-services-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
  box-shadow: none;
}

.aeo-services-accordion .accordion-button::after {
  display: none !important;
}

.aeo-services-accordion .accordion-body {
  color: #555;
  padding: 0 20px 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
}

.aeo-services-accordion .accordion-button span {
  white-space: normal;
  word-wrap: break-word;
  color: var(--purple7E3B8C);
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .our-aeo-services .image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .our-aeo-services .image-col img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
    .our-aeo-services {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
  .our-aeo-services .image-col img {
    max-height: 220px;
  }
}


.image-col img{
    border-radius:10px;
}

.digitalmarketing-overview{
    padding: 50px 0;
}

.digitalmarketing-overview-img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.digitalmarketing-overview-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 15px;
}

.digitalmarketing-overview-img-overlay {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 200px;
    height: 100px;
    border-radius: 25px;
    z-index: 0;
}

.digitalmarketing-overview-img-cornor-shape {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 200px;
    height: 100px;
}

.digitalmarketing-overview-img-overlay .read-more-btn {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #000;
    padding: 25px 10px 10px 25px;
    justify-content: center;
    flex: 1;
    gap: 10px;
}

 /* â”€â”€ RIGHT: carousel content â”€â”€ */
.dms .dms-layout .dms-right {
  flex: 1;
  /*padding: 60px 20px 60px 40px;*/
  /*min-height: 100vh;*/
  display: flex;
  flex-direction: column;

}

/* Service number + title */
.dms .dms-layout .dms-right .service-title {
  /*font-size: clamp(1.6rem, 2.5vw, 2.2rem);*/
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* â”€â”€ Tab nav â”€â”€ */
.dms .dms-layout .dms-right .tab-nav-main {
  display: flex;
  gap: 0;
  /*margin-bottom: 28px;*/
  flex-wrap: wrap;
}

.dms .dms-layout .dms-right .tab-nav .tab-btn {
  background: none;
  border: none;
  padding: 10px 18px 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
  outline: none;
}

.dms .dms-layout .dms-right .tab-nav .tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue4732CD);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.dms .dms-layout .dms-right .tab-nav .tab-btn.active {
  color: #111111;
}

.dms .dms-layout .dms-right .tab-nav .tab-btn.active::after {
  transform: scaleX(1);
}

/* â”€â”€ Tab panels â”€â”€ */
.dms .dms-layout .dms-right .tab-panel {
  display: none;
  animation: fadeTab 0.35s ease;
}

.dms .dms-layout .dms-right .tab-panel.active {
  display: block;
}

/*@keyframes fadeTab {*/
/*  from { opacity: 0; transform: translateY(8px); }*/
/*  to   { opacity: 1; transform: translateY(0); }*/
/*}*/

.dms .dms-layout .dms-right .tab-panel ul{
    margin:0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
}

.dms .dms-layout .dms-right .tab-panel ul li{
    position: relative;
    padding-left: 40px;
    padding-right: 10px;
    margin-bottom: 20px;
    flex: 0 0 50%;
}

.dms .dms-layout .dms-right .tab-panel ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--purple7E3B8C);
    border-radius: 50%;
}

/* â”€â”€ Features grid (2 cols) â”€â”€ */
.dms .dms-layout .dms-right .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-bottom: 40px;
  position:relative;
}

.dms .dms-layout .dms-right .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.5;
}

.dms .dms-layout .dms-right .features-grid .feature-item .fi-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
}

/* generic text tab content */
.dms .dms-layout .dms-right .tab-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* â”€â”€ Prev / Next nav â”€â”€ */
.dms .dms-layout .dms-right .slide-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dms .dms-layout .dms-right .slide-nav .nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.dms .dms-layout .dms-right .slide-nav .nav-btn:hover {
  transform: scale(1.08);
}

.dms .dms-layout .dms-right .slide-nav .nav-btn.prev:hover {
  background: var(--primary-light);
  border-color: #5b2be0;
}

.dms .dms-layout .dms-right .slide-nav .nav-btn.next {
  background: #5b2be0;
  border-color: #5b2be0;
}

.dms .dms-layout .dms-right .slide-nav .nav-btn.next:hover {
  background: var(--primary-dark);
}

/* slide counter */
.dms .dms-layout .dms-right .slide-nav .slide-counter {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

/* â”€â”€ Slide wrapper (each service is a "slide") â”€â”€ */
.dms .dms-layout .dms-right .service-slide {
  display: none;
}

.dms .dms-layout .dms-right .service-slide.active {
  display: block;
}
    
@media (max-width:1440px){
 .digitalmarketing-services-section .stats-grid .stat-card{
    gap:40px;
  }
  .digitalmarketing-services-section .stats-grid .stat-card .stat-info .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .dms .dms-layout {
    flex-direction: column;
  }

  .dms .dms-layout .dms-left {
    position: static;
    height: auto;
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0 20px 32px;
    justify-content: flex-start;
  }

  .dms .dms-layout .dms-right {
    min-height: auto;
    padding: 0px;
  }

  .dms .dms-layout .dms-right .features-grid {
    grid-template-columns: 1fr;
  }
}
    
@media (max-width:768px){
    .digitalmarketing-overview {
        padding: 30px 0;
    }
    
    .digitalmarketing-overview-img img{
        min-height: 300px;
    }
    
    .dms .dms-layout .dms-right .tab-panel ul li{
        flex: 0 0 100%;
    }
    
}

@media (max-width: 575px) {
  .dms .dms-layout .dms-right .tab-nav .tab-btn {
    padding: 8px 12px 10px;
    font-size: 0.78rem;
  }
}
    
@media (max-width:375px){
 .digitalmarketing-services-section .stats-grid .stat-card{
     gap: 30px;
  }
}

/*SEO sections*/
.localseo-img img {
    width: 100%;
    height: auto;
}

.seo-sections ul {
    margin: 0;
    padding: 0;
}

.seo-sections ul li {
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.seo-sections ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("./imbc/images/right-arrow-with-circle-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-heading-ul ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("./imbc/images/right-arrow-with-circle-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.enterpriseseo-img img {
    width: 100%;
    height: auto;
}

.enterpriseseo-section ul{
    margin: 0;
    padding: 0;
}

.enterpriseseo-section ul li {
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.enterpriseseo-section ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(./imbc/images/right-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--purple51227A);
    border-radius: 50%;
    transform: rotate(180deg);
}

/* Ai table css */
.ai-driven-table thead {
    background-color: #4732CD;
}

.ai-driven-table thead th {
    background-color: #4732CD4D;
    color: #fff;
    font-weight: 600;
}

.ai-driven-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.ai-driven-table tbody tr:nth-child(even) td {
    background-color: #f5f0ff;
}

.ai-driven-table table {

    overflow: hidden;
}

.ai-driven-table td,
.ai-driven-table th {
    padding: clamp(10px, 2vw, 20px);
}


/* Why Businesses Trust Section Styles */
.businessestrust-overlay-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    padding: 0;
    margin: 0;
}

.businessestrust-overlay-left {
    position: absolute;
    top: clamp(20px, 8vw, 270px);
    left: 0;
    width: 65%;
    height: calc(100% - clamp(0px, 8vw, 270px));
    background-color: rgba(0, 0, 0, 0.77);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 0px 70px 0 0;
    padding: 40px 20px;
}

.businessestrust-content-wrapper {
    width: 100%;
    color: #ffffff;
    text-align: left;
}

.businessestrust-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.businessestrust-custom-btn {
    border-radius: 40px;
    padding: 5px 20px 5px 20px;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #7E3B8C;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.businessestrust-custom-btn:hover {
    background-color: #7E3B8C;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .businessestrust-overlay-left {
        padding: 60px;
    }
}

@media (min-width: 1200px) {
    .businessestrust-overlay-left {
        padding: 140px;
    }
}

@media (max-width: 768px) {
    .businessestrust-overlay-left {
        width: 100%;
        top: 0;
        height: 100%;
        border-radius: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .button-row-top,
    .button-row-bottom {
        justify-content: flex-start;
    }

    .businessestrust-custom-btn {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}
    

/* About Us CSSś
--------------------------------------------- */
section.left-img-right-text.py-lg-5.py-4 img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}


ul.platform-logo {
   column-count: 7; /* Divides the list into 2 equal columns */
  column-gap: 0px; /* Optional: adds space between columns */
  list-style-position: inside; /* Keeps bullets aligned within columns */
  padding:0;
}

@media(max-width:1024px){
    ul.platform-logo {
   column-count: 3; /* Divides the list into 2 equal columns */
 
}
}

@media(max-width:456px){
    ul.platform-logo {
   column-count: 2; /* Divides the list into 2 equal columns */
 
}
}

ul.platform-logo li {
    border: 1px solid #ddd;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 10px;
        margin: 0 8px 15px;
    justify-content: center;
}

ul.platform-logo li img {
    width: 100%;
    height: auto;
    max-width: 80%;
}

.enterpriseseo-img img, .localseo-img img {
    border-radius: 10px;
}

/*ai-driven-table-1 trusted section css*/

section.ai-driven-table-1 .get-started-bg {
    background-image: url("./imbc/images/our-value-proposition-bg.webp");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 0px 0 10px;
}
section.ai-driven-table-1 .getstartedcard {
    z-index: 1;
    background-color: #f3e4ff;
    padding: 50px 0;
    border-radius: 0 10px 10px 0;
}
section.ai-driven-table-1 .getstartedcard .get-started {
    width: 85%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
section.ai-driven-table-1 .get-started-bg p {
    color: #fff;
    padding: 0 50px 0px;
}

.get-text.list-get-text {
    padding: 0px 50px;
}
section.ai-driven-table-1 .getstartedcard .get-started .get-img {
    background-color: #fff;
    border-radius: 50%;
    height: 75px;
    width: 75px;
    box-shadow: rgba(0, 0, 0, .1) 0px 4px 12px;
    margin-left: -40px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-img img {
    width: 38px;
    height: auto;
}

.get-started-bg h2 {
    color: #fff;
    padding: 20px 50px;
}
.getstartedcard .get-text h3 {
    font-size: 22px;
}
@media (max-width:991px){
    
    section.ai-driven-table-1 .get-started-bg {
        min-height: 250px;
    }
    
    section.ai-driven-table-1 .get-started-bg {
    border-radius: 0;
}

    section.ai-driven-table-1 .getstartedcard .get-started {
        width: 100%;
        padding: 15px;
    }
       section.ai-driven-table-1 .getstartedcard {
        overflow: hidden;
    }

  section.ai-driven-table-1 .getstartedcard .get-started {
        width: 100%;
        padding: 15px;
    }
    section.ai-driven-table-1 .getstartedcard .get-started .get-img {
        margin-right: 0px;
        margin-bottom: 10px;
    }

}
@media (max-width: 576px) {
   section.ai-driven-table-1 .getstartedcard .get-started {
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }
}


/* Single Industry Page CSS
--------------------------------------------- */
.welcome-section{
    padding: 50px 0 30px;
}

.welcome-section img{
    width:100%;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .single-branding-industry  .btn-primary{
        font-size: 14px;
    }
}

/*Counter section*/
.industry-counter-section{
    padding: clamp(30px, 6vw, 50px) 0px;
    background-image: url(./imbc/images/marketing-services-stand-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.industry-counter {
    font-family: "Wix Madefor Display";
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    background-image: linear-gradient(45deg, #2200ff 00%, #ff1fe1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.industry-counter .industry-counter-number {
    display: inherit;
}

.industry-counter-title {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    color: var(--blue4732CD);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.industry-counter-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    display: inline-block;
    width: calc(100% - 100px);
    height: 1px;
    background: var(--blue4732CD);
    transform: translateX(-50%);
}

.industry-counter-description {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue4732CD);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .industry-counter {
        font-size: 2.5rem;
    }
}

/*Industry Overview section*/
.industry-overview-section{
    padding: clamp(30px, 6vw, 30px) 0px;
}

/*Feature section*/
.feature-section{
    padding: clamp(30px, 6vw, 30px) 0px;
}

.feature-item {
    padding: 20px;
    border-right: 1px solid #dee2e6;
}

.feature-item-col:nth-child(3n) .feature-item,
.feature-item-col:last-child .feature-item{
    border-right: 0;
}

.feature-item-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feature-item-title {
    font: normal 600 normal 22px / 31px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
}

.feature-item-description {
    font: normal 500 normal 18px / 29px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
}

@media (max-width: 767px) {
    .feature-item{
        border-right: 0;
        border-bottom: 1px solid #dee2e6;
    }
    
    .feature-item-col:last-child .feature-item{
        border-bottom: 0;
    }
}


/*Industry Insights section*/
.industry-challenges-section {
    padding: clamp(30px, 6vw, 30px) 0px;
}

.industry-challenges-content {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.industry-challenges-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 100px);
    height: 100%;
    background: #E2E3FF;
    box-shadow: 0px 3px 6px #0000000D;
    border-radius: 15px;
    z-index: -1;
}

.industry-challenges-content ul {
    margin: 0;
    padding: 0;
}

.industry-challenges-content li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 40px;
}

.industry-challenges-content li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url('./imbc/images/left-white-arrow.svg');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: var(--blue4732CD);
    border-radius: 50%;
    transform: rotate(180deg);
}

.industry-challenges-image img{
    position: relative;
    width:100%;
    border-radius: 15px;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 767px) {
    .industry-challenges-content {
        padding: 20px;
    }
    
    .industry-challenges-content:before{
        width: 100%;
    }
}


/*Our Approach Section*/
.our-approach-section{
    padding: clamp(30px, 6vw, 30px) 0px;
}

.our-approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-item{
    background-color: #F9F9F9;
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0px 3px 6px #B5B5B529;
}

.approach-item:not(:first-of-type){
   border-top: 1px solid #EFEFEF; 
}

.our-approach-tabs-title{
    font-size: 20px;
}

/*Industry Services section*/
.industry-services-section{
    padding: 30px 0 30px;
}

.industry-services-content .tab-nav-main .tab-btn {
    background: none;
    border: none;
    padding: 10px 18px 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
    outline: none;
}

.industry-services-content .tab-nav-main .tab-btn.active {
    color: #111111;
}

.industry-services-content .tab-nav-main .tab-btn.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue4732CD);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.industry-services-content .tab-nav-main .tab-btn.tab-btn.active::after {
    transform: scaleX(1);
}


/*Business Growth section*/
.business-growth-section{
    padding: clamp(30px, 6vw, 30px) 0px;
}

.business-growth-item {
    background: #EFECFF;
    /*border: 1px solid rgba(110, 82, 255, 0.35);*/
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    transition: 0.3s ease;
}

.business-growth-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(141, 92, 255, 0.2);
}

.business-growth-item-icon{
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #4732CD;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #EFECFF;
    box-shadow: 0px 0px 0px 2px rgb(91 66 96);  
}

.business-growth-item-icon img{
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(100);
}

.business-growth-item .business-growth-item-title{
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}


/*Marketing Strategy section*/
.marketing-strategy-section{
    padding: clamp(30px, 6vw, 30px) 0px;
}

.marketing-strategy-image img{
    border-radius: 15px;
    width:100%;
}

.marketing-strategy-content ul {
    margin: 0;
    padding: 0;
}

.marketing-strategy-content ul li {
    font: normal normal normal 16px / 30px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
    padding-left: 40px;
    margin-bottom: 10px;
    position: relative;
}

.marketing-strategy-content ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("./imbc/images/right-arrow-with-circle-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


/*clients review section*/
.clients-review-row {
    border-bottom: 1px solid #ecebeb;
    background-color: #fff;
    padding: 30px;
}

.clients-review-item h3{
    font-family: "Wix Madefor Display";
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.clients-review-item .extra-text{
    font: normal normal normal 16px / 27px Wix Madefor Display;
    letter-spacing: 0px;
    color: #676767;
}


/*Team Work section*/
.team-work-section {
    background: #F1F1F1;
}

.team-work-slider .owl-stage {
    display: flex;
}

.team-work-header-content{
    position: relative;
    width: calc(100% + 80px);
    min-height: 500px;
    height: 100%;
    padding: 50px 70px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-work-header-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 60%) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    z-index: 1;
}

.team-work-header-content img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    object-fit: cover;
}

.team-work-header-content h2 {
    font: normal normal bold 50px / 63px Wix Madefor Display;
    letter-spacing: 0px;
    color: #FFFFFF;
    position: relative;
}

.team-work-header-text{
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    z-index:1;
}

.team-work-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #E1DFDF;
    border-radius: 10px;
    height: 100%;
}

.team-work-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.team-work-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-work-card h3{
    font: normal normal 700 20px / 28px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
}

.team-work-card p {
    font-family: "Wix Madefor Display";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #616161;
}

.team-work-slider-footer,
.team-work-footer-content{
    margin: 0 100px;
}

@media (max-width: 767px) {
    .team-work-header-content{
        width: 100%;
    }
    
    .team-work-header-content{
        min-height: auto;
        padding: 16px;
    }
    
    .team-work-header-content h2{
        font-size: 30px;
        line-height: 45px;
    }
    
    .team-work-slider-footer,
    .team-work-footer-content{
        margin: 0 0px;
    }
}

/*Compliance section*/
.compliance-section{
    padding: clamp(30px, 6vw, 50px) 0px;
}

.compliance-header-content img {
    border-radius: 15px;
}

.compliance-item img{
    width:100%;
    object-fit: cover;
}

.compliance-item ul{
    padding:0;
    margin:0;
}

.compliance-item ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.compliance-item ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("./imbc/images/right-arrow-with-circle-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


/*why Choose section*/
.why-choose-section{
   padding: clamp(30px, 6vw, 50px) 0px;
}

.why-choose-item{
    background: #F1F1F1;
    border-radius: 15px;
    min-height: 250px;
    height: 100%;
    padding: 20px;
    transition: 0.5s ease;
}

.why-choose-item:hover {
    background: #520263;
}

.why-choose-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.why-choose-item-icon{
    text-align: end;
}

.why-choose-item-icon img{
    width: 60px;
    height: 60px;
}

.why-choose-item:hover img {
    filter: brightness(100) !important;
}

.why-choose-item-body-content h3 {
    text-align: left;
    font: normal normal 600 18px / 26px Wix Madefor Display;
    letter-spacing: 0px;
    color: #000000;
}

.why-choose-item:hover .why-choose-item-body-content,
.why-choose-item:hover .why-choose-item-body-content h3,
.why-choose-item:hover .why-choose-item-body-content p{
    color: #fff;
}

/*Clients Review section*/
.clients-review-row {
    border-bottom: 1px solid #ecebeb;
    background-color: #fff;
    padding: 30px;
}

.clients-review-item svg {
    text-align: left;
    display: flex;
    margin-bottom: 16px;
    width: 80px;
}


.clients-review-item h3{
    font-family: "Wix Madefor Display";
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

@media (max-width: 767px) {
    .clients-review-row{
        padding: 16px;
        margin: 0px;
    }
}

@media (max-width: 767px) {
    .seo-driven-3{
        flex-direction: column;
    }
}


.grid-wrapper-industries {
  background: #f4f5f7;
  padding: 24px;
  border-radius: 16px;
  max-width:100%;
  width: 100%;
}

.grid-industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.card-industries{
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 17px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  min-height: 120px;
}

.card-industries:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.card-icon {
  font-size: 34px;
  line-height: 1;
}

.card-label {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.4;
}

.testimonial-section {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-mid) 50%, var(--grad-end) 100%);
  padding: 60px 20px 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 14px; height: 14px;
  filter: invert(0) brightness(0) invert(1);
}

/* Single card */
.testimonial-card {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 40px 40px 32px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.2);
}

/* Quote bubble */
.quote-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgb(183 173 201);
}

.quote-bubble svg {
  width: 24px; height: 24px;
  fill: white;
}

/* Stars */
.stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
}

.star { font-size: 20px; color: var(--star-color); }

/* Review text */
.review-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Divider */
.card-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 18px;
}

.reviewer-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.reviewer-title {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dots */
.carousel-indicators {
  position: relative;
  bottom: auto;
  margin-top: 36px;
  gap: 8px;
  justify-content: center;
}

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  opacity: 1;
  transition: background-color 0.3s, transform 0.3s;
}

.carousel-indicators .active {
  background-color: white;
  transform: scale(1.25);
}















