/*** Spinner Start ***/
* {
    box-sizing: border-box;

}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 20s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    background: var(--bs-primary);
    opacity: 1;
    transition: .8s;
}

.carousel-control-prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.carousel-control-next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--bs-secondary);
}

@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 40px;
    }
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item h6 {
        font-size: 16px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }

    .carousel-content-btn1,
    .carousel-content-btn2 {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .4)), url(../img/main_1.jpg) center center no-repeat;
    background-size: cover;
}

/* Page-specific header backgrounds */
body.about-page .page-header,
[data-page="about"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .4)), url(../img/about_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.solutions-page .page-header,
[data-page="solutions"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url(../img/solution_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.titlesearch-page .page-header,
[data-page="titlesearch"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url(../img/titlesearch_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.propertytax-page .page-header,
[data-page="propertytax"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url(../img/propertytax_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.medical-rcm-page .page-header,
[data-page="medical-rcm"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url(../img/medical-rcm_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.escrow-page .page-header,
[data-page="escrow"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .4)), url(../img/support_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.dataentry-page .page-header,
[data-page="dataentry"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .2)), url(../img/dataentry_cover.jpg) center center no-repeat;
    background-size: cover;
}

body.titlexam-page .page-header,
[data-page="titlexam"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .2)), url(../img/titleexam_cover.png) center center no-repeat;
    background-size: cover;
}

body.flood-deter-page .page-header,
[data-page="flood_deter"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .1)), url(../img/flood_cover.png) center center no-repeat;
    background-size: cover;
}

body.coveragemap-page .page-header,
[data-page="coveragemap"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/coverage_map.png) center center no-repeat;
    background-size: cover;
}

body.contact-page .page-header,
[data-page="contact"] .page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .4)), url(../img/contact_cover.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}




/*** Carousel End ***/

 /*  Qualia hero section – scoped styles only */

.qualia-hero-context {
  font-family: Inter, sans-serif;
}

/* Local CSS variables just for this section */
.qualia-hero-context {
  --qualia-brand: #26d48c;
}

/* Layout container */
.qualia-hero-context .hero-container {
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Content side */

.qualia-hero-context .hero-content {
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.qualia-hero-context .hero-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.qualia-hero-context .hero-brand-badge {
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.qualia-hero-context .hero-brand-badge img {
  height: 24px;
  width: auto;
  display: block;
}

.qualia-hero-context .hero-certified-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14px;
  text-transform: uppercase;
}

.qualia-hero-context .hero-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.qualia-hero-context .hero-description {
  font-size: 18px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
  max-width: 672px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.qualia-hero-context .hero-cta-row {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Primary button */

.qualia-hero-context .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
  background-color: rgb(13, 110, 253);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
}

.qualia-hero-context .hero-btn-primary:hover {
  transform: translateY(-4px);
}

.qualia-hero-context .hero-btn-primary:active {
  transform: scale(0.95);
}

.qualia-hero-context .hero-btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

/* Match original svg hover effect without global override */
.qualia-hero-context .hero-btn-primary:hover svg._s1 {
  transform: translateY(2px);
}

/* Secondary button */

.qualia-hero-context .hero-btn-secondary {
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  transition: 0.2s;
}

.qualia-hero-context .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* Visual side */

.qualia-hero-context .hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qualia-hero-context .hero-visual-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
}

/* Glow and rings */

.qualia-hero-context .visual-glow {
  position: absolute;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  animation: qualia-pulse 2s ease-in-out infinite;
}

.qualia-hero-context .visual-ring-1 {
  position: absolute;
  width: 288px;
  height: 288px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.qualia-hero-context .visual-ring-2 {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* Main card */

.qualia-hero-context .visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.7s;
}

.qualia-hero-context .visual-card:hover {
  transform: scale(1.05);
}

.qualia-hero-context .visual-card-inner {
  background: #ffffff;
  border-radius: 36.8px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06) inset;
  min-width: 320px;
}

.qualia-hero-context .visual-card-inner img {
  width: 100%;
  height: auto;
  max-width: 240px;
}

/* Floating status */

.qualia-hero-context .floating-status {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(243, 244, 246);
}

.qualia-hero-context .status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--qualia-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qualia-hero-context .status-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.qualia-hero-context .status-label {
  font-size: 10px;
  color: rgb(107, 114, 128);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
}

.qualia-hero-context .status-value {
  font-size: 14px;
  font-weight: 700;
  color: rgb(31, 41, 55);
  margin: 0;
}

/* Floating decor */

.qualia-hero-context .floating-decor {
  position: absolute;
  top: -40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: none;
  flex-direction: column;
  gap: 8px;
}

.qualia-hero-context .decor-bar-1 {
  height: 8px;
  width: 64px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
}

.qualia-hero-context .decor-bar-2 {
  height: 8px;
  width: 40px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
}

/* Pulse animation (scoped) */

@keyframes qualia-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

/* =======================
 * Responsive adjustments
 * ===================== */

@media (max-width: 329px) {
  .qualia-hero-context .hero-container {
    padding: 32px 16px;
  }

  .qualia-hero-context .hero-heading {
    font-size: 28px;
  }

  .qualia-hero-context .hero-description {
    font-size: 14px;
  }

  .qualia-hero-context .hero-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .qualia-hero-context .hero-btn-primary,
  .qualia-hero-context .hero-btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .qualia-hero-context .visual-card-inner {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 24px 20px;
  }

  .qualia-hero-context .visual-card-inner img {
    max-width: 180px;
  }

  .qualia-hero-context .hero-visual-inner {
    min-height: 300px;
  }

  .qualia-hero-context .floating-status {
    bottom: -16px;
    right: -16px;
    padding: 12px;
    gap: 8px;
  }

  .qualia-hero-context .status-icon {
    width: 32px;
    height: 32px;
  }

  .qualia-hero-context .status-icon svg {
    width: 18px;
    height: 18px;
  }

  .qualia-hero-context .status-value {
    font-size: 12px;
  }
}

@media (min-width: 330px) and (max-width: 479px) {
  .qualia-hero-context .hero-container {
    padding: 40px 20px;
  }

  .qualia-hero-context .hero-heading {
    font-size: 34px;
  }

  .qualia-hero-context .hero-description {
    font-size: 16px;
  }

  .qualia-hero-context .hero-cta-row {
    flex-direction: column;
  }

  .qualia-hero-context .visual-card-inner {
    min-width: 260px;
    padding: 32px 24px;
  }

  .qualia-hero-context .hero-visual-inner {
    min-height: 340px;
  }
}

@media (min-width: 480px) {
  .qualia-hero-context .hero-heading {
    font-size: 40px;
  }

  .qualia-hero-context .hero-description {
    font-size: 18px;
  }

  .qualia-hero-context .hero-cta-row {
    flex-direction: row;
  }

  .qualia-hero-context .visual-card-inner {
    min-width: 320px;
  }

  .qualia-hero-context .hero-visual-inner {
    min-height: 400px;
  }
}

@media (min-width: 640px) {
  .qualia-hero-context .hero-container {
    padding: 48px 32px;
  }
}

@media (min-width: 768px) {
  .qualia-hero-context .hero-container {
    padding: 80px 32px;
  }

  .qualia-hero-context .hero-heading {
    font-size: 48px;
  }

  .qualia-hero-context .hero-description {
    font-size: 20px;
  }

  .qualia-hero-context .floating-decor {
    display: flex;
  }

  .qualia-hero-context .visual-card-inner {
    min-width: 360px;
  }
}

@media (min-width: 1024px) {
  .qualia-hero-context .hero-container {
    flex-direction: row;
    padding: 80px 64px;
    gap: 48px;
  }

  .qualia-hero-context .hero-content {
    width: 60%;
    text-align: left;
  }

  .qualia-hero-context .hero-brand-row {
    justify-content: flex-start;
  }

  .qualia-hero-context .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .qualia-hero-context .hero-cta-row {
    justify-content: flex-start;
  }

  .qualia-hero-context .hero-visual {
    width: 40%;
    justify-content: flex-end;
  }

  .qualia-hero-context .visual-card-inner {
    min-width: 400px;
  }
}


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

/* .project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
} */

/*** Project End ***/
/*** Trust and Transparency start ***/
.ezy__service5 {
    /* Bootstrap variables */
    --bs-body-color: #2B323C;
    --bs-body-bg: rgb(255, 255, 255);

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-list-bg: #ffffff;
    --ezy-list-shadow: 0px 8px 44px rgba(227, 238, 255, 0.48);
    --ezy-card-bg: #edf6f9;
    --ezy-card-shadow: 0px 8px 44px rgba(227, 238, 255, 0.48);

    background: var(--bs-body-bg);
    overflow: hidden;
    padding: 30px 0 60px 0;
}

@media (min-width: 768px) {
    .ezy__service5 {
        padding: 50px 0 100px 0;
    }
}

/* Gray Block Style */
.gray .ezy__service5,
.ezy__service5.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);

    /* Easy Frontend variables */
    --ezy-list-bg: #fff;
    --ezy-list-shadow: 0px 8px 44px rgba(203, 224, 250, 0.48);
    --ezy-card-bg: #dde7fb;
    --ezy-card-shadow: 0px 8px 44px rgba(203, 224, 255, 0.48);
}

/* Dark Gray Block Style */
.dark-gray .ezy__service5,
.ezy__service5.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);

    /* Easy Frontend variables */
    --ezy-list-bg: #313d4b;
    --ezy-list-shadow: none;
    --ezy-card-bg: #2a3749;
    --ezy-card-shadow: none;
}

/* Dark Block Style */
.dark .ezy__service5,
.ezy__service5.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);

    /* Easy Frontend variables */
    --ezy-list-bg: #162231;
    --ezy-list-shadow: none;
    --ezy-card-bg: #121d2c;
    --ezy-card-shadow: none;
}

.ezy__service5-heading {
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    color: var(--bs-body-color);
}

@media (min-width: 768px) {
    .ezy__service5-heading {
        font-size: 35px;
        line-height: 35px;
    }
}

.ezy__service5-sub-heading {
    font-size: 18px;
    line-height: 25px;
    color: var(--bs-body-color);
    opacity: .8;
}

.ezy__service5-list {
    background-color: var(--ezy-list-bg);
    box-shadow: var(--ezy-list-shadow);
    border-radius: 30px;
}

.ezy__service5-card {
    background-color: transparent;
    border-radius: 20px;
    height: 100%;
    border: none;
    transition: background-color .25s ease-in-out, box-shadow .25s ease-in-out, transform .25s ease-in-out;
}

.ezy__service5-card:hover,
.ezy__service5-card.active {
    background-color: var(--ezy-card-bg);
    box-shadow: var(--ezy-card-shadow);
    transform: translateY(-4px);
}

.ezy__service5-card [class*="col-"]:nth-of-type(1n) .ezy__service5-icon {
    background-color: rgba(252, 110, 92, .10);
    color: rgba(252, 110, 92, 1);
}

.ezy__service5-card [class*="col-"]:nth-of-type(2n) .ezy__service5-icon {
    background-color: rgba(4, 121, 193, .10);
    color: rgba(4, 121, 193, 1);
}

.ezy__service5-card [class*="col-"]:nth-of-type(3n) .ezy__service5-icon {
    background-color: rgba(255, 214, 0, .10);
    color: rgba(255, 214, 0, 1);
}

.ezy__service5-icon {
    font-size: 32px;
}

.ezy__service5-title {
    color: var(--bs-body-color);
}

.ezy__service5-content {
    color: var(--bs-body-color);
    opacity: .8;
}

/*** Trust and Transparency End***/



/*** Meet our clients ***/
.ezy__clients8 {
    /* Bootstrap variables */
    --bs-body-color: #28303b;
    --bs-body-bg: rgb(255, 255, 255);

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-item-bg: #f4f7fd;

    background-color: var(--bs-body-bg);
    overflow: hidden;
    padding: 60px 0 30px 0;
}

@media (min-width: 768px) {
    .ezy__clients8 {
        padding: 100px 0 50px 0;
    }
}

/* Gray Block Style */
.gray .ezy__clients8,
.ezy__clients8.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);

    /* Easy Frontend variables */
    --ezy-item-bg: #fff;
}

/* Dark Gray Block Style */
.dark-gray .ezy__clients8,
.ezy__clients8.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);

    /* Easy Frontenrgb(16, 26, 39)bles */
    --ezy-item-bg: #263344;
}

/* Dark Block Style */
.dark .ezy__clients8,
.ezy__clients8.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);

    /* Easy Frontend variables */
    --ezy-item-bg: #162231;
}

.ezy__clients8-heading {
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    color: var(--bs-body-color);
}

@media (min-width: 768px) {
    .ezy__clients8-heading {
        font-size: 35px;
        line-height: 35px;
    }
}

.ezy__clients8-sub-heading {
    font-size: 18px;
    line-height: 25px;
    color: var(--bs-body-color);
    opacity: 0.7;
}

.ezy__clients8-item {
    background-color: var(--ezy-item-bg);
    border-radius: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ezy__clients8-img {
    max-height: 100px;
}

/*** Meet our clients End ***/





/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;

}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}

.blog-icon-1 {
    position: relative;
    top: -4px;
}

.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

/* .testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
} */

/* .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
} */

/* .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
} */

/* .testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
} */

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/

/***
404 Page

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

/* Scope everything under .error-404 to avoid impact on other pages */
.error-404 * {
    box-sizing: border-box;
    margin: 0px;
    padding: 5px;
    outline: none;
    border: 0;
}

/* Container */
.error-404 .container {
    max-width: 100%;
    width: 1170px !important;
    margin: 0 auto !important;
    float: none !important;
}

@media only screen and (max-width: 1280px) {
    .error-404 .container {
        padding: 0 15px;
    }
}

/* Error page wrapper */
.error-404 .error-page {
    position: relative;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    line-height: 1.4;
    word-break: break-word;
    font-size: 16px;
}

/* Image */
.error-404 img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

.error-404 .error-page img {
    margin-bottom: 30px;
    max-width: 320px;
}

/* Text elements */
.error-404 span {
    padding: 0;
    margin: 0;
}

.error-404 .overline {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #3452ff;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
}

.error-404 .error-page .overline {
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

/* Headings */
.error-404 h1 {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 67px;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
}

/* Paragraphs */
.error-404 p {
    font-size: 16px;
    margin: 0 0 1.4rem;
    color: #4e4e4e;
}

.error-404 .error-page p {
    margin-bottom: 30px;
}

.error-404 .error-page #hs_cos_wrapper_content p {
    margin-bottom: 0;
}

/* Search field */
.error-404 .hs-search-field {
    position: relative;
}

.error-404 .hs-search-field__bar {
    margin-top: 30px;
}

/* Suggestions list */
.error-404 ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 15px;
}

.error-404 .hs-search-field__suggestions {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Form + inputs */
.error-404 form {
    font-family: 'Roboto', sans-serif;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.error-404 input {
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    line-height: inherit;
    overflow: visible;
    background-color: #f7f7f7;
    border-color: #dddde4;
    box-shadow: none !important;
    color: #1a1a1a;
    outline: none;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.error-404 .hs-search-field__input {
    box-sizing: border-box;
    width: 100%;
}

.error-404 input[type="text"] {
    background-color: #FFF;
    border: 2px solid #D1D6DC;
    border-radius: 3px;
    color: #33475B;
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.7rem;
    width: 100%;
}

/* Optional: focus state */
.error-404 input[type="text"]:focus {
    border-color: #3452ff;
}

***/
/*** Footer Start ***/


.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

footer {
    display: block;
    width: 100%;
    background: #1842b6;
    color: #fff;
    position: relative;
    z-index: 10;
    padding: 16px 0;
    text-align: center;
}