
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 99;
    height: 58px;
    width: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white) !important;
    border: none;
}

/* .btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
} */

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*=========================================================
	03 -> NAVIGATION
===========================================================*/

/* #navigation {
  background-color: #30323A;
} */

#navigation .container {
  position: relative;
}

/*----------------------------*\
	Category nav
\*----------------------------*/

.category-nav {
  float: left;
  width: 270px;
}

.category-nav .category-header {
  padding: 15px;
  display: block;
  text-transform: uppercase;
  background: #e41cad;
  color: #FFF;
  font-weight: 700;
}

.category-nav .category-header>i {
  float: right;
  line-height: 20px;
}

.category-nav .category-list {
  position: absolute;
  width: 270px;
  background-color: #FFF;
  border-left: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  z-index: 50;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.category-nav.show-on-click .category-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
}

.category-nav.show-on-click .category-list.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.category-nav .category-list>li+li {
  border-top: 1px solid #DADADA;
}

.category-nav .category-list>li.dropdown>.dropdown-toggle>i {
  float: right;
  line-height: 20px;
}

.category-nav .category-list>li>a {
  display: block;
  padding: 15px;
  text-transform: uppercase;
}

.category-nav .category-list>li>a:hover, .category-nav .category-list>li>a:focus, .category-nav .category-list>li.dropdown.open>a {
  color: #e41cad;
}

/*----------------------------*\
	Menu nav
\*----------------------------*/

.menu-header {
  display: none;
  padding: 15px;
  text-transform: uppercase;
  background: #30323A;
  color: #FFF;
  font-weight: 700;
}

.menu-nav .menu-header>i {
  float: right;
  line-height: 20px;
}

.menu-nav .menu-list>li {
  display: inline-block;
}

.menu-nav .menu-list>li>a {
  display: block;
  padding: 30px 15px 15px;
  color: rgba(0, 0, 0, .9);
  text-transform: uppercase;
}

.menu-nav .menu-list>li>a:hover, .menu-nav .menu-list>li>a:focus, .menu-nav .menu-list>li.dropdown.open>a {
  color: #e41cad;
}

/*----------------------------*\
	Dropdowns
\*----------------------------*/

.custom-menu {
  position: absolute;
  padding: 15px;
  background: #FFF;
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 100;
  top: 100%;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.dropdown.open>.custom-menu {
  opacity: 1;
  visibility: visible;
}

/*-- Default Dropdown --*/

.dropdown.default-dropdown>.custom-menu {
  border-top: 2px solid #e41cad;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(15px);
  -ms-transform: translateX(-50%) translateY(15px);
  transform: translateX(-50%) translateY(15px);
}

.dropdown.default-dropdown.open>.custom-menu {
  -webkit-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
}

.dropdown.default-dropdown>.custom-menu>li>a {
  display: block;
  padding: 10px 0px;
  text-transform: uppercase;
}

/*-- Mega Dropdown --*/

.dropdown.mega-dropdown.full-width {
  position: static !important;
}

.dropdown.mega-dropdown>.custom-menu {
  border-top: 3px solid #5812b8;
  left: 0;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  width: auto;
  min-width: 750px;
  max-width: 100%;
  top: 90px;
}

.dropdown.mega-dropdown.full-width>.custom-menu {
  width: 100%;
}

.dropdown.mega-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*-- Side Dropdown --*/

.dropdown.side-dropdown>.custom-menu {
  border-left: 2px solid #e41cad;
  left: 100%;
  top: 0;
  width: 750px;
  -webkit-transform: translate(15px, 0px);
  -ms-transform: translate(15px, 0px);
  transform: translate(15px, 0px);
}

.dropdown.side-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*----------------------------*\
	Mobile nav
\*----------------------------*/

#header .nav-toggle {
  display: none;
}

@media only screen and (max-width: 991px) {
  #header .nav-toggle {
    display: inline-block;
  }
  header .pull-left, header .pull-right {
    float: none !important;
  }
  .pull-left {
    float: left !important;
  }
  .pull-right {
    float: right !important;
  }
  header .pull-right {
    margin-top: 10px;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 270px;
    width: 0%;
    overflow: hidden;
    background-color: #FFF;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    z-index: 990;
  }
  #responsive-nav.open {
    width: 100%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  #responsive-nav .dropdown .custom-menu {
    display: none;
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid #e41cad;
  }
  #responsive-nav .dropdown.open .custom-menu {
    display: block;
    min-width: auto;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .category-nav .category-list, .menu-nav .menu-list {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
  }
  .category-nav .category-list.open, .menu-nav .menu-list.open {
    display: block;
  }
  .menu-nav .menu-header, .category-nav .category-header {
    cursor: pointer;
  }
  .category-nav {
    float: none;
    width: 100%;
  }
  .category-nav .category-list {
    position: static;
  }
  .menu-nav .menu-header {
    display: block;
  }
  .menu-nav .menu-list {
    float: none;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li {
    display: block;
  }
  .menu-nav .menu-list>li+li {
    border-top: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li>a {
    color: #30323A;
  }
  #navigation.shadow:after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  #navigation.shadow::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
  }
}

/*=========================================================
	04 -> BANNERS
===========================================================*/

.banner {
  display: block;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.banner>img {
  width: 100%;
}

.banner.banner-1 .banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner.banner-2 .banner-caption {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
}

.banner h1 {
  font-size: 46px;
  text-transform: uppercase;
}

.white-color {
  color: #FFF;
}

ul, ol {
  list-style: none;
}

.fa-caret-down::before {
  content: "\f0d7";
  display: none;
}

/*----------------------------*\
	Lists
\*----------------------------*/

.list-links .list-links-title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.list-links li {
  border-bottom: none;
  padding: 0;
}

/* Show line only on mobile (below 768px for example) */
@media (max-width: 768px) {
  .list-links li {
    border-bottom: 1px solid #c6c6c6;
    padding: 8px 0;
  }

  .list-links li:last-child, .list-links li:first-child {
    border-bottom: none; /* remove line after last item */
  }
}

ul {
  padding-left: 1rem;
}

.ul-style-circle{
    list-style-type: initial;
}

.list-links li>a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 2px 0px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #30323A;
  font-size: 14px;
}

.list-links li>a:before {
  content: "\e809";
  position: absolute;
  left: 0px;
  font-family: alwaysip;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.list-links li>a:hover, .list-links li>a:focus, .list-links li.active>a {
  color: #e41cad;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.list-links li>a:hover:before, .list-links li>a:focus:before, .list-links li.active>a:before {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-color: #DADADA;
}

/* Nevigation end */

.nav-bar {
  top: -100px;
  transition: top 0.3s ease;
}
.nav-bar.show {
  top: 0;
}

/*** Navbar Start ***/
/* .nav-bar {
    background: var(--bs-white);
    transition: 1s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 1.02rem;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
} */ 
/*** Navbar End **


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 530px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgba(53, 53, 53, 0.9), rgba(53, 53, 53, .7)), url(../img/bg-breadcrumb.jpg); */
    background: linear-gradient(rgba(53, 53, 53, 0.9), rgba(53, 53, 53, .7));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 60px 0 60px 0; */
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a, .bg-breadcrumb .breadcrumb  .breadcrumb-item.active {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.features .nav-tabs {
  border: 0;
  background-color: #9a18c81a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.nav-tabs-blue {
  background-color: #359afc33 !important;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover, .features .nav-linkBlue:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: #9a18c8;
}

.features .nav-linkBlue:hover h4 {
  color: #1772ca ;
}

.features .nav-link.active {
  background-color: #9a18c8;
  border-color: #9a18c8;
  color: #FFF;
}

.features .nav-link-blue.active {
  background-color: #0097d7  !important;
  border-color: #0097d7  !important;
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #484848;
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.features .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features .phone-mockup img {
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.features .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 500;
  /* margin-bottom: 10px; */
}

.features .feature-item .feature-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
}

.features .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, #5812b8, transparent 92%);
}

.features .feature-item .feature-icon i {
  font-size: 24px;
  color: #5812b8;
}
/*** Feature End ***/


/*** Service Start ***/
.services{
    background-color: #d5e6f8;
    background-image: url(../img/feature-bg-white-2.png);
    background-position: top left;
    background-repeat: no-repeat;
    max-width: 100%;
    height: auto;
    }
.services .service-card {
  height: 100%;
  padding: 15px 30px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


.services .service-card:hover .icon {
  background: #006de0b8;
  color: var(--bs-light);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--bs-secondary), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  /* margin-right: 30px; */
  background: color-mix(in srgb, #006de0, transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #006de0;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  /* font-family: "Nunito", sans-serif; */
}

.services .service-card p {
  margin-bottom: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

.btn-rounded{
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service image + button layout */
.service-img-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

/* Mobile layout fix */
@media (max-width: 768px) {
  .service-img-col {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .service-img-col img {
    margin-bottom: 10px;
  }

  .service-img-col .btn {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .service-img-col .btn {
    margin-top: 8px;
  }
}

/*** Service End ***/


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: #e8d7ff;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  color: #16243d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Flex */
  display: flex;
  flex-direction: column;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.pricing .pricing-card.popular {
  background: var(--bs-primary);
  color: var(--bs-light);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  /* background: var(--contrast-color);
  color: var(--accent-color); */
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--bs-secondary), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-secondary);
  color: var(--bs-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  /* background: var(--bg-secondary); */
  border: none;
  /* color: var(--contrast-color); */
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--bs-secondary), transparent 15%);
}

.pricing .pricing-card .see-features {
  margin-top: auto;
  color: #5812b8;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

.pricing .pricing-card .see-features:hover {
  color: #9a18c8;
}

/*** FAQs Start ***/
/* .faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
} */
/*** FAQs End ***/

/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

.contact h1{
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.contact h1::after {
    content: "";
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    top: 10px;
    left: 50%;
    right: 0;
    bottom: 0;
  }

.contact .contact-card{
  height: 100%;
  padding: 30px;
  background: #d5f1e4de;
  border-radius: 10px;
  transition: all 0.3s ease;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

.contact .contact-card .icon {
  /* width: 60px;
  height: 60px; */
  margin-right: 20px;
  /* background: color-mix(in srgb, #006de0, transparent 80%); */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* border-radius: 8px; */
  /* color: #006de0; */
  /* font-size: 20px; */
  /* transition: all 0.3s ease; */
  /* line-height: 1; */
}

.contact .contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Nunito", sans-serif;
}

.contact .contact-card p {
  margin-bottom: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.contact a {
  color:#222;
  transition: all 0.3s ease;
}

.contact a:hover {
  color:#34a26d ;
  transition: all 0.3s ease;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a, .footer a {
    line-height: 35px;
    color: #9c9c9c;
    transition: 0.5s;
}

.footer .footer-item p {
    /* line-height: 35px; */
}

.footer .footer-item a:hover, .footer a:hover {
    color: var(--bs-light);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #141617;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/


.bg-purple{
    background-color: var(--bs-primary);
}

.section-title h2::after {    
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #5812b8;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title-green h2::after {    
  background: #34a26d !important;
}

.section-title-blue h2::after {    
  background: #168ccc !important;
}

.section-title-white h2::after {    
  background: #FFF !important;
}

.section-title h2{
    font-family: "Nunito", sans-serif;
    font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* counter */

.wrapper {
  width: 100%;
  max-width: 1110px;
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

.ftco-counter {
  overflow-x: hidden;
  position: relative;
  margin-top: -50px; 
  padding-bottom: 5rem;
}
  @media (max-width: 1199.98px) {
    .ftco-counter {
      background-position: top center !important; } }
  .ftco-counter .img-video {
    width: 100%;
    display: block; }
    @media (max-width: 767.98px) {
      .ftco-counter .img-video {
        height: 300px; } }
  .ftco-counter .icon span {
    font-size: 50px;
    color: #000000;
    line-height: 1; }
  .ftco-counter .block-18 {
    display: block;
    width: 100%; }
  .ftco-counter .text strong.number {
    font-weight: 600;
    font-size: 40px;
    color: #000000;
    display: block;
    position: relative; }
    
  .ftco-counter .text span {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800; }
  @media (max-width: 767.98px) {
    .ftco-counter .counter-wrap {
      margin-bottom: 20px; } }

  .counter-counting h2:after, .counter-counting p:after {
      position: relative;
      display: block;
      bottom: -8px;
      left: 0;
      content: '';
      width: 35px;
      height: 3px;
      background: #1b9ce3; 
    }

  .counter-counting p {
    padding-top: 20px;
    font-size: 2rem !important;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #16243d;
  }

/* hr{
  width: 35px;
  height: 3px !important;
  color: #ff4d4d;
  opacity: 9;
} */

/* video background */

.ftco-intro {
  position: relative;
  padding: 8em 0;
  z-index: 0; }
  .ftco-intro:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: .8;
    background: #233e62;
    background: #1566ad;
    background: -moz-linear-gradient(left, #030303 0%, #535353 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #030303), color-stop(100%, #535353));
    background: -webkit-linear-gradient(left, #030303 0%, #535353 100%);
    background: -o-linear-gradient(left, #030303 0%, #535353 100%);
    background: -ms-linear-gradient(left, #030303 0%, #535353 100%);
    background: -webkit-gradient(linear, left top, right top, from(#030303), to(#535353));
    background: linear-gradient(to right, #030303 0%, #535353 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1566ad', endColorstr='#1b9de3', GradientType=1 ); }
  .ftco-intro .btn {
    width: 100%; }
  .ftco-intro h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .ftco-intro h2::after {
    content: "";
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #FFF;
}
.testimonials .testimonial-item {
  background-color: #FFF;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--bs-light);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--bs-dark), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #666;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, #dadada, transparent 15%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bs-secondary);
}

.testimonials .swiper-slide {
  /* opacity: 0.3; */
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    /* transform: scale(1.12); */
  }
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
/* ================================
   Business Sectors - Swiper Fix
================================ */

/* Swiper slide fix */
.swiper-slide {
  height: auto;
  display: flex;
}

/* Wrapper alignment */
.features-cards {
  align-items: stretch;
}

/* Feature card base */
.features-cards .feature-box {
  width: 100%;
  height: 100%;
  padding: 20px 15px 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.features-cards .feature-box {
  width: 230px;
}

/* Icon styling */
.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Heading styling */
.features-cards .feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ================================
   Color Variants
================================ */

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}
.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}
.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}
.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}
.features-cards .feature-box.red i {
  color: #f28484;
}

/* ================================
   Mobile Optimization
================================ */

@media (max-width: 576px) {
  .features-cards .feature-box {
    padding: 15px 10px;
  }

  .features-cards .feature-box i {
    font-size: 28px;
  }

  .features-cards .feature-box h4 {
    font-size: 13px;
  }
}

/* ================================
   Optional: Smooth Look
================================ */

.swiper {
  padding: 5px 10px;
}

/* Prevent overflow issues */
.swiper-wrapper {
  align-items: stretch !important;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, #dadada, transparent 15%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006de0;
}

 @media (min-width: 768px) { /* Adjust breakpoint as needed */
      .custom-smaller-width {
        width: 5.5% !important; /* Example: make it smaller than 8.33% */
      }
    }



/*** Feature Start ***/
.feature {
  background-color: #d5f1e4de !important;
}
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.11);
}

/* .feature .feature-item:hover {
    background: #48c88a;
} */

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #F5F8F7;
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #48c88a;
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: #48c88a;
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.feature .feature-item h4 {
    font-size: 20px;
    font-weight: 600;
}



.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
/* .feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
} */

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/

.btn-secondary {
  color: #FFF;
  background-color: #006de0b8;
  border-color: transparent;
}

.btn-secondary:hover {
    color: #FFF;
    background-color: #9a18c8;
    border-color: #9a18c8
}

/* inner page hero carousel */

/* ===== WRAPPER ===== */
.hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== SLIDER ===== */
.home-slider,
.slider-item {
  height: 350px;
}

.slider-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* ===== OVERLAY ===== */
.overlay {
    position: absolute;
    height: 500px;
    background: rgba(0, 0, 0, 0.39);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
  }

/* ===== CONTENT ===== */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 99;
  display: flex;
  top: 10%;
}


/* ===== TITLE ===== */
.page-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.breadcrumb-item.active {
  color: #ddd;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {

  .home-slider,
  .slider-item {
    height: 360px;
  }

  .page-title {
    font-size: 32px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

  .home-slider,
  .slider-item {
    height: auto;
    min-height: 280px;
  }

  .slider-item {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; /* 🔥 important */
    background-color: #6f8896; /* match your bg tone */
  }

  .hero-content {
    text-align: center;
    justify-content: center;
  }

  .hero-content .container {
    padding: 0 20px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .breadcrumb {
    justify-content: center;
  }

  .breadcrumb-item {
    font-size: 12px;
  }

  /* spacing between breadcrumb items */
  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .home-slider,
  .slider-item {
    height: 260px;
  }

  .page-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-item:nth-child(2),
  .breadcrumb-item:nth-child(3) {
    display: none;
  }
}

/* DESKTOP (keep as is) */
.slider-item {
  background-size: cover;
  background-position: center;
}


.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative; }
  .hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .9;
    background: #000406;
    background: -moz-linear-gradient(left, #1566ad 0%, #1b9de3 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #1566ad), color-stop(100%, #1b9de3));
    background: -webkit-linear-gradient(left, #1566ad 0%, #1b9de3 100%);
    background: -o-linear-gradient(left, #1566ad 0%, #1b9de3 100%);
    background: -ms-linear-gradient(left, #1566ad 0%, #1b9de3 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1566ad), to(#1b9de3));
    background: linear-gradient(to right, #1566ad 0%, #1b9de3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1566ad', endColorstr='#1b9de3', GradientType=1 ); }
  .hero-wrap.hero-wrap-2 {
    height: 300px; }
    .hero-wrap.hero-wrap-2 .slider-text {
      height: 300px; }
      .hero-wrap.hero-wrap-2 .slider-text .bread {
        font-weight: 900;
        color: #fff; }
      .hero-wrap.hero-wrap-2 .slider-text .breadcrumbs {
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px; }
        .hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span {
          color: #fff;
          border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
          .hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span a {
            color: #fff; }

.owl-carousel {
  position: relative; }
  .owl-carousel .owl-item {
    opacity: .4; }
    .owl-carousel .owl-item.active {
      opacity: 1; }
  .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%; }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-top: -10px;
      color: #1b9ce3 !important;
      -moz-transition: all 0.7s ease;
      -o-transition: all 0.7s ease;
      -webkit-transition: all 0.7s ease;
      -ms-transition: all 0.7s ease;
      transition: all 0.7s ease;
      opacity: 0; }
      .owl-carousel .owl-nav .owl-prev span:before,
      .owl-carousel .owl-nav .owl-next span:before {
        font-size: 30px; }
    .owl-carousel .owl-nav .owl-prev {
      left: 0; }
    .owl-carousel .owl-nav .owl-next {
      right: 0; }
  .owl-carousel .owl-dots {
    text-align: center; }
    .owl-carousel .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: #e6e6e6;
      position: relative; }
      .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
        outline: none !important; }
      .owl-carousel .owl-dots .owl-dot.active {
        background: #b3b3b3; }
  .owl-carousel:hover .owl-nav .owl-prev,
  .owl-carousel:hover .owl-nav .owl-next {
    opacity: 1; }
  .owl-carousel:hover .owl-nav .owl-prev {
    left: -25px; }
  .owl-carousel:hover .owl-nav .owl-next {
    right: -25px; }
  .owl-carousel.home-slider {
    position: relative;
    height: 335px;
    z-index: 0; }
    .owl-carousel.home-slider .slider-item {
      /* background-size: cover; */
      background-repeat: no-repeat;
      background-position: top center;
      height: 335px;
      position: relative;
      z-index: 0; }
      @media (max-width: 1199.98px) {
        .owl-carousel.home-slider .slider-item {
          background-position: center center !important; } }
      .owl-carousel.home-slider .slider-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000000;
        opacity: .4; }
      .owl-carousel.home-slider .slider-item .slider-text {
        height: 335px; }
        @media (max-width: 767.98px) {
          .owl-carousel.home-slider .slider-item .slider-text {
            text-align: center; } }
        .owl-carousel.home-slider .slider-item .slider-text .text {
          position: relative; }
        .owl-carousel.home-slider .slider-item .slider-text h1 {
          font-size: 60px;
          color: #fff;
          line-height: 1.2;
          font-weight: 900; }
          .owl-carousel.home-slider .slider-item .slider-text h1 span {
            display: block; }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text h1 {
              font-size: 40px; } }
        .owl-carousel.home-slider .slider-item .slider-text .subheading {
          font-size: 14px;
          font-weight: 700;
          text-transform: uppercase;
          color: white;
          letter-spacing: 2px; }
        .owl-carousel.home-slider .slider-item .slider-text p {
          color: rgba(255, 255, 255, 0.9); }
        .owl-carousel.home-slider .slider-item .slider-text .breadcrumbs {
          text-transform: uppercase;
          font-size: 13px;
          letter-spacing: 1px; }
          .owl-carousel.home-slider .slider-item .slider-text .breadcrumbs span {
            border-bottom: 2px solid rgba(255, 255, 255, 0.1); }
            .owl-carousel.home-slider .slider-item .slider-text .breadcrumbs span a {
              color: #fff; }
    .owl-carousel.home-slider .owl-nav {
      position: absolute;
      top: 100%;
      width: 100%; }
      .owl-carousel.home-slider .owl-nav .owl-prev,
      .owl-carousel.home-slider .owl-nav .owl-next {
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: -10px;
        outline: none !important;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0; }
        .owl-carousel.home-slider .owl-nav .owl-prev span:before,
        .owl-carousel.home-slider .owl-nav .owl-next span:before {
          font-size: 30px;
          color: rgba(255, 255, 255, 0.5);
          -moz-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          -webkit-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .owl-carousel.home-slider .owl-nav .owl-prev:hover span:before, .owl-carousel.home-slider .owl-nav .owl-prev:focus span:before,
        .owl-carousel.home-slider .owl-nav .owl-next:hover span:before,
        .owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
          color: #fff; }
      .owl-carousel.home-slider .owl-nav .owl-prev {
        left: 50%;
        margin-left: -80px; }
      .owl-carousel.home-slider .owl-nav .owl-next {
        right: 50%;
        margin-right: -80px; }
    .owl-carousel.home-slider:hover .owl-nav .owl-prev,
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
      opacity: 1; }
    .owl-carousel.home-slider:hover .owl-nav .owl-prev {
      left: 50%;
      margin-left: -80px; }
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
      right: 50%;
      margin-right: -80px; }
    .owl-carousel.home-slider .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 60px;
      width: 100%;
      text-align: center; }
      .owl-carousel.home-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px;
        border-radius: 50%;
        background: #5812b8; }
        .owl-carousel.home-slider .owl-dots .owl-dot.active {
          background: #fff; }

  /* Mobile Hero Without Background Image */
@media (max-width: 767px) {

  /* remove slider area */
  .home-slider,
  .home-slider .slider-item,
  .home-slider .slider-item .overlay,
  .owl-carousel.home-slider .owl-dots {
    background-image: none !important;
    height: 0 !important;
    min-height: 0 !important;
    display: none;
  }

  /* hero section style */
  .hero-wrapper {
    background: #1566ad;
    background: linear-gradient(to right, #1566ad 0%, #1b9de3 100%);
    padding: 20px 15px;
    text-align: center;
    position: relative;
  }

  /* title */
  .hero-wrapper .page-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
  }

  /* breadcrumb */
  .hero-wrapper .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    padding: 0;
  }

  .hero-wrapper .breadcrumb-item,
  .hero-wrapper .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
  }

  .hero-wrapper .breadcrumb-item.active {
    color: #fff;
  }

  .hero-content{
    top: 15%;
    display: contents;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: #888;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: #666;
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #666;
}

.about .feature-list li i {
  color: #5812b8;
  font-size: 1.25rem;
}

.inner-about .feature-list li i {
  color: #222;
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid #FFF;
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.about .content {
  /* background-color: #a6dffeb0; */
  padding: 30px 40px 20px;
  margin-bottom: 30px;
  border-radius: 15px;
  /* background-image: radial-gradient(circle at 80% 70%, rgba(120,160,220,0.35), #0000 60%), radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), #a1ccff 55%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06); */
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: #000000;
  --default-color: #ffffff;
  --contrast-color: #ffffff;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.aboutCall-action{
  padding: 60px 0 100px;
}

.aboutCall-action:before {
  background: linear-gradient(to right, #1566adbf 0%, #1b9de3cc 100%) !important;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: #FFF;
  border: 2px solid #FFF;
  color: #5812b8;
}


/*--------------------------------------------------------------
# Call To Action Section 2
--------------------------------------------------------------*/
.call-to-action-2 .container {
  background: #006de0;
  color: #FFF;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 2rem 0rem;
}

.call-to-action-2 .content h2,
.call-to-action-2 .content p {
  color: #FFF;
  position: relative;
  z-index: 2;
}

.call-to-action-2 .btn-cta {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FFF;
  color: #FFF;
}

.call-to-action-2 .btn-cta:hover {
  background: #FFF;
  border: 2px solid #FFF;
  color: #006de0;
}

.call-to-action-2 .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-2 .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action-2 .shape svg path {
  fill: color-mix(in srgb, #010d1a 50%, transparent 50%);
}

.call-to-action-2 .shape-1 {
  width: 300px;
  height: 300px;
  top: -65px;
  right: -40px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action-2 .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -20px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-2 .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action-2 .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: #FFF;
}

.call-to-action-2 .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action-2 .dots-1 {
  width: 200px;
  height: 200px;
  top: -15px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-2 .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action-2 .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action-2 .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action-2 .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-2 .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action-2 .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-2 .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action-2 .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action-2 .container {
    border-radius: 0;
  }
}


/*--------------------------------------------------------------
# Features Section for inner page
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  transition: 0.3s;
  height: 100%;
  color: #666;
}

.features .feature-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.features .feature-box i {
  line-height: 0;
  padding: 9px 6px;
  margin-right: 10px;
  font-size: 14px;
  border-radius: 3px;
  transition: 0.3s;
}

.olive {
  background-color: #d5f1e4;
  i {
    background: #48c88a;
    color: #fff;
  }
}

.rose {
  background-color: #fdeded;
  i {
    background: #f28484;
    color: #fff;
  }
}

.yellow {
  background-color: #fff3e2;
  i {
    background: #edb86e;
    color: #fff;
  }
}

.sky {
  background-color: #deedfd;
  i {
    background: #26a7f8;
    color: #fff;
  }
}


/* accordion inner pages */
.img-container {
      background: #f2f2f2;
      height: 550px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      overflow: hidden;
      border: solid 2px #FFF;
    }
    #displayImage {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease-in-out;
    }

.accordion-item {
  border: 1px solid rgba(0, 109, 224, 0.25);
}

.accordion-body {
  background: #eff9ff;
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgb(191, 218, 247);
}

.accordion-button:not(.collapsed) {
  background-color: #51a7db;
  color: #FFF;
  /* background-color: #abc7ed; */
}

.bg-blue{
  background-color: #a3cffe75; /*#d5e6f8*/
  background-image: url(../img/feature-bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  max-width: 100%;
  height: auto;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.service .icon-box:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2); */
}

.service .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.service .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.service .title {
  margin-left: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.service .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.service .description {
  font-size: 15px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
  color: #666;
}

.masonry {
  columns: 3; /* number of columns */
  column-gap: 20px;
}

.masonry-four {
  columns: 4; /* number of columns */
  column-gap: 20px;
}

.masonry-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  break-inside: avoid;
}

.masonry-item p {
  margin: 10px 20px 20px 40px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;

}

.masonry-item ul {
  list-style: none;
  margin: 10px;
  padding: 20;
  font-size: 15px;
  color: lightgray;
}

.masonry-item li {
  /* overflow: hidden; */
  position: relative;
  padding: 0 0 10px 35px;
}

.masonry-item li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 20px;
  height: 31px;
  border: 2px solid lightgray;
  border-width: 2px 0 0 2px;
}

.masonry-item li:last-child::before {
  border-width: 2px 0 0 0;
}

.masonry-item li::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 2px solid lightgray;
  border-radius: 50%;
}

.masonry-item li.current,
.masonry-item li.visited {
  color: #666;
}

.masonry-item li.current::before {
  border-top-color: #4ed094;
}
.masonry-item li.current::after {
  border-color: #4ed094;
  background: #4ed094;
}
.masonry-item li.visited::before,
.masonry-item li.visited::after {
  border-color: #4ed094;
}

/* ul li for Telephony Features */
.tf-title {
  color: #ff689b !important;
}

.tf::before, .tf::after {
  border-color: #ff689b8f !important;
}

.masonry-item li.tf-dark::before {
  border-top-color: #ff689b !important;
  border-color: #ff689b8f !important;
}
.masonry-item li.tf-dark::after {
  border-color: #ff689b !important;
  background: #ff689b !important;
}

/* ul li for Businees Needs */
.bn-title {
  color: #d5ae05 !important;
}

.bn::before, .bn::after {
  border-color: #edca329e !important;
}

/* ul li for Administration and Supervisor */
.as-title {
  color: #34bbb5 !important;
}

.as::before, .as::after {
  border-color: #3fcdc68f !important;
}

/* ul li for Soft Phone */
.sp-title {
  color: #853fbf !important;
}

.sp::before, .sp::after {
  border-color: #984cd774 !important;
}

/* ul li for Basic Call Center */
.bcc-title {
  color: #e88d76 !important;
}

.bcc::before, .bcc::after {
  border-color: #f899818c !important;
}

.masonry-item li.bcc-dark::before {
  border-top-color: #f89981 !important;
  border-color: #f899818c !important;
}
.masonry-item li.bcc-dark::after {
  border-color: #f89981 !important;
  background: #f89981 !important;
}

/* ul li for Campaign */
.cam-title {
  color: #4680ff !important;
}

.cam::before, .cam::after {
  border-color: #4681ff70 !important;
}

/* ul li for Integrations */
.int-title {
  color: #4ed094 !important;
}

.int::before, .int::after {
  border-color: #4ed09496 !important;
}

.masonry-item li.int-dark::before {
  border-top-color: #4ed094 !important;
  border-color: #4ed09496 !important;
}
.masonry-item li.int-dark::after {
  border-color: #4ed094 !important;
  background: #4ed094 !important;
}

/* ul li for Monitoring & Reporting */
.mr-title {
  color: #c622c6 !important;
}

.mr::before, .mr::after {
  border-color: #c622c659 !important;
}

.masonry-item li.mr-dark::before {
  border-top-color: #c622c6 !important;
  border-color: #c622c659 !important;
}
.masonry-item li.mr-dark::after {
  border-color: #c622c6 !important;
  background: #c622c6 !important;
}


@media (max-width: 991px) {
  .masonry {
    columns: 2;
  }
}
@media (max-width: 575px) {
  .masonry {
    columns: 1;
  }
}

/* .icon {
  font-size: 42px;
  margin-bottom: 12px;
}
h4 {
  margin-bottom: 10px;
} */

.service .masonry-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service .masonry-item .service-img img {
    transition: 0.5s;
}

.service .masonry-item:hover .service-img img {
    transform: scale(1.1);
}

.service .masonry-item:hover .service-img::after {
    height: 100%;
}

/*--------------------------------------------------------------
# Inner page about
--------------------------------------------------------------*/
.inner-about .about-meta {
  color: #888;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.inner-about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.inner-about h2::after, .about h2::after {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #5812b8;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 30px;
}

.about .about-title::after {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #006de0;
  top: 10px;
  margin: 0 0 30px 0;
}

.bg-blue-light h2::after {
  background: #006de0 !important;
}

.inner-about .about-description {
  margin-bottom: 2rem;
  color: #666;
}

.bg-blue-light{
  background-color: #a6dffeb0;
}

.inner-about .icon-box {
  display: flex;
}

.inner-about .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.inner-about .icon-box i {
  font-size: 23px;
  line-height: 25px;
  margin-right: 10px;
}

.inner-about .icon-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}

.color-blue{
  color: #006de0 !important;
}


/*--------------------------------------------------------------
# country section
--------------------------------------------------------------*/

.country-wrap{
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.country-box{
  padding: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 90px;
}

.country-box img{
  max-width: 100%;
  margin-right: 15px;
}

.country-box title{
  /* margin-top: 10px; */
  font-size: 15px;
  color: #333;
  text-align: left;
  display: block ;
}

.country-box img {
  transition: all 0.3s ease-in-out;
  /* height: 36px; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.30);
  border-radius: 50%;
}

.country-box:hover img {
  /* -webkit-filter: none;
  filter: none; */
  transform: scale(1.1);
  -webkit-filter: grayscale(40%);
  filter: grayscale(40%);
}


/*** Service Start ***/
.service{
  /* background-color: #d5f1e4de !important; */
}

.service .service-item {
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.11);
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

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

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.service .service-item .service-content .service-content-inner h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service .service-item .service-content .service-content-inner p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.service .service-item .service-content .service-content-inner i {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}



/*** Service End ***/

.video-container {
  position: relative;
  width: 100%;
  /* min-height: 75vh; */
  overflow: hidden;
  display: flex;
  align-items: center; /* center your form vertically */
}

.bgvid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container .container {
  position: relative;
  z-index: 2;
  margin: 50px auto;
}

ol.alpha-list {
  list-style-type: lower-alpha; /* This will work in modern browsers */
}


/* .bgvid{
  position:absolute;
  left:0;
  top:0;
  width:100vw;
} */

.test-bg{
  /* Soft Cross-Hatch Pattern */
  /* background-color: #e8f2ff;
background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 1px, transparent 1px, #00000007 8px ); */

/* Vertical Soft Stripes */
background-color: #e8f2ff;
background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.15) 0px, rgba(12, 79, 240, 0.13) 1px, transparent 1px, transparent 8px ), repeating-linear-gradient( -45deg, rgba(255,255,255,0.15) 0px, rgba(196, 54, 54, 0.14) 1px, transparent 1px, #00000005 8px );

/* Pixel Noise Pattern */
/* background-color: #e8f2ff;
background-image: repeating-linear-gradient( 90deg, rgba(255,255,255,0.12) 0, rgba(63, 100, 230, 0.13) 1px, #3698fd26 1px, #00000008 16px ); */

/* Smooth Wave Lines */
/* background-color: #e8f2ff;
background-image: radial-gradient(circle at 0 0, rgba(34, 55, 170, 0.3), #0000002e 60%), radial-gradient(circle at 100% 100%, rgba(147, 55, 55, 0.3), #00000014 60%); */

/* Diamond-Mesh Pattern */
/* background-color: #e8f2ff;
background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0, rgba(25, 53, 204, 0.16) 1px, #0000000d 1px, #00000003 14px), repeating-linear-gradient(-45deg, rgba(163, 162, 200, 0.08) 0, rgba(202, 36, 36, 0.08) 1px, #0000 1px, #00000005 14px); */



}

.bg-wave-lines{
  /* background: linear-gradient(
  135deg,
  #b6c1d9 0%,
  #c2c5d1 50%,
  #b9bcc6 100%
); */
  background-color: #bcc4d6;
background-image:
  radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.608), transparent 55%),
  radial-gradient(circle at 85% 80%, rgba(22, 190, 253, 0.4), transparent 60%);
}

.bg-virtual {
  background: linear-gradient( 135deg, #fff 0%, #cfe3f6 45%, #99c1f4 100% );
}

.bg-ai {
/* background-color: #a9c5eb; */
background-image:  
  radial-gradient(circle at 80% 70%, rgba(120,160,220,0.35), #0000 60%),
  radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), #a1ccff 55%)
}

.bg-storage{
  /* background-color: #bcc4d6; */
background-image:
  radial-gradient(circle at 15% 20%, rgb(163, 210, 255), transparent 60%), 
  radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.77), transparent 85%);
}


/*--------------------------------------------------------------
# cisco Services Section
--------------------------------------------------------------*/
.cisco .service-item {
  box-shadow: 0px 0 30px color-mix(in srgb, #111, transparent 90%);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.cisco .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.cisco .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.cisco .service-item.item-cyan {
  border-bottom: 3px solid #34bbb5;
}

.cisco .service-item.item-cyan .icon {
  color: #34bbb5;
  background: rgba(13, 202, 240, 0.1);
}

.cisco .service-item.item-cyan:hover h3,
.cisco .service-item.item-cyan:hover p {
  color: #34bbb5;
}

.cisco .service-item.item-orange {
  border-bottom: 3px solid #fa7;
}

.cisco .service-item.item-orange .icon {
  color: #fa7;
  background: rgba(253, 126, 20, 0.1);
}

.cisco .service-item.item-orange:hover h3,
.cisco .service-item.item-orange:hover p {
  color: #fa7;
}

.cisco .service-item.item-teal {
  border-bottom: 3px solid #3bbf9abf;
}

.cisco .service-item.item-teal .icon {
  color: #3bbf9abf;
  background: rgba(32, 201, 151, 0.1);
}

.cisco .service-item.item-teal:hover h3,
.cisco .service-item.item-teal:hover p {
  color: #3bbf9abf;
}

.cisco .service-item.item-red {
  border-bottom: 3px solid #fa6170db;
}

.cisco .service-item.item-red .icon {
  color: #fa6170db;
  background: rgba(223, 21, 4, 0.1);
}

.cisco .service-item.item-red:hover h3,
.cisco .service-item.item-red:hover p {
  color: #fa6170db;
}

.cisco .service-item.item-indigo {
  border-bottom: 3px solid #8d62d4b0;
}

.cisco .service-item.item-indigo .icon {
  color: #8d62d4b0;
  background: rgba(102, 16, 242, 0.1);
}

.cisco .service-item.item-indigo:hover h3,
.cisco .service-item.item-indigo:hover p {
  color: #8d62d4b0;
}

.cisco .service-item.item-pink {
  border-bottom: 3px solid #de5d9ded;
}

.cisco .service-item.item-pink .icon {
  color: #de5d9ded;
  background: rgba(243, 38, 140, 0.1);
}

.cisco .service-item.item-pink:hover h3,
.cisco .service-item.item-pink:hover p {
  color: #de5d9ded;
}

.cisco .service-item:hover .icon {
  background: #fff;
  box-shadow: 0px 0 30px color-mix(in srgb, #111, transparent 90%);
}

.badge{
  font-size: 1em;
  border-radius: 50px;
  font-weight: 600;
  padding: .45em .75em;
}
.badge-blue {
  background-color: #006de0 !important;
}
.border-bottom {
  border-bottom: 1px solid #006de042 !important;
}


/* Cisco table */

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #8cc6ff;
  vertical-align: top;
  font-size: 15px;
}

.comparison-table-purple th,
.comparison-table-purple td {
  border-bottom: 1px solid #8451ca5e;
}

.comparison-table thead th {
  border-bottom: none;
}

.comparison-table tr:last-child td, .comparison-table tr:last-child th {
  border: none;
}

.comparison-table th:first-child {
  font-weight: 600;
  width: 220px;
  white-space: nowrap;
}

.plan-pill {
  background: #006de0b8;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}

.plan-pill-purple {
  background: #5812b8ba;
}

.muted {
  color: #6c757d;
  text-align: center;
}

.text-purple {
  color: #5812b8 !important;
}

/*** Cisco featurs Start ***/

.cisco-features .service-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


.cisco-features .service-card:hover .icon {
  background: #006de0b8;
  color: var(--bs-light);
}

.cisco-features .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, #006de0, transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #006de0;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.cisco-features .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  /* font-family: "Nunito", sans-serif; */
}

.cisco-features .service-card p {
  margin-bottom: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/*** cisco features End ***/

.company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, #006ce0, transparent 92%);
  border-radius: 50px;
  color: #006ce0;
  font-weight: 500;
}


.bg-white {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1) !important;
}

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

.image-container {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: url('../img/cta-bg.jpg') center/cover no-repeat;
  padding: 10px 0;
}

/* Overlay */
.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.61); /* adjust opacity */
  z-index: 1;
}

.image-container .container {
  position: relative;
  z-index: 2;
}

.bg-form {
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.195);
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.bg-form-home {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #16243d;
}

.faq .faq-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: #5812b8;
}

.faq .faq-container .faq-item {
  background-color: #fff;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: #5812b8;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #5812b8;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: #666;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #5812b8;
}

.faq .faq-container .faq-active h3 {
  color: #5812b8;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #5812b8;
}

@media screen and (min-width: 992px) and (max-width: 1390px) {
  .display-none-md {
    display: none !important;
  }
}

@media (min-width: 1389px) {
  .display-block {
    display: block !important;
  }
}


.scrollbar
{
	/* margin-left: 30px; */
	float: left;
	height: 300px;
	width: 100%;
	overflow-y: scroll;
	margin: 10px 0 25px;
}

.force-overflow
{
	min-height: 300px;
}

#style-8::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#style-8::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

#style-8::-webkit-scrollbar-thumb
{
	background-color: #6273c7;	
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.55);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 8px;
}

.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.values .card-title a {
  color: #000;
}

.values .card-text {
  color: #000;
}

.values .card:hover .card-body {
  background: #006de0;  
}

.values .card:hover .read-more a, .values .card:hover .card-title, .values .card:hover .card-title a, .values .card:hover .card-text {
  color: #fff;
}

/* pricing page table */
.pricing-table{
    border:1px solid #e7e7e7;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
}

.table{
    margin-bottom:0;
}

.table-responsive{
    overflow:visible;
}

.table th,
.table td{
    padding:20px;
    vertical-align:middle;
}

.accordion-button{
    background:#e2efff;
    font-size:16px;
    font-weight:600;
    color:#304560;
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    background:#ddedff;
    color:#304560;
}

.accordion-item{
    border:0;
}

.accordion-body{
    padding:0;
}

.table tbody td{
    background:#fff;
}

.text-success{
    font-size:22px;
    font-weight:bold;
}

.pricing-table td:first-child,
.pricing-table th:first-child{
    position: relative;
    /* background:#fff; */
    z-index:2;
    box-shadow: 12px 0 16px rgba(0,0,0,.08);
}

.cursor-pointer {
  cursor: pointer;
}

.pricing-table table{
    width:100%;
    table-layout:fixed;
    background: #82b9f9;
}

.sub-heading td{
    background:#ececec !important;
    color:#35507a;
    font-weight:700;
    letter-spacing:.3px;
    padding:10px 20px;
    border-left:4px solid #4d9cff;
}