body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", sans-serif;
}

header nav {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  padding: 10px 0px !important;
}
header nav .logo img {
  width: 30%;
}
header nav .navbar-nav {
  margin: 0px 0px 0px auto;
  padding: 6px 0px;
  gap: 30px;
  align-items: center;
}
header nav .navbar-nav .nav-item .nav-link {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  line-height: normal;
}
header nav .navbar-nav .nav-item .nav-link.active,
header nav .navbar-nav .nav-item .nav-link.show {
  color: #0d6efd;
}
header nav .navbar-nav .nav-item .nav-link:hover {
  color: #0d6efd;
}
header nav .navbar-nav .nav-item .nav-link.get-btn {
  background-color: #0d6efd;
  border: 1px solid #0d6efd;
  color: #fff;
  border-radius: 50px;
  padding: 6px 22px;
  width: -moz-max-content;
  width: max-content;
}
header nav .navbar-nav .nav-item .nav-link.get-btn:hover {
  color: #0d6efd;
  background-color: transparent;
}
header nav .navbar-nav .nav-item .nav-link.get-btn span {
  position: absolute;
  z-index: 999;
  top: -4px;
  right: 3px;
  background-color: #d92662;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.29) 0px 0px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #0d6efd;
  font-weight: 500;
  transform: scale(1);
  animation: pulse-red 1s infinite;
  border: 2px solid #fff;
}
@keyframes pulse-red {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #d92662;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
header nav .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
  box-shadow: none;
}
header nav .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
  margin-bottom: -2px;
  transform: rotate(1turn);
  transition: transform 0.3s ease-out;
}
header
  nav
  .navbar-nav
  .nav-item.dropdown
  .nav-link.dropdown-toggle.show::after {
  transform: rotate(180deg);
}
header nav .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  left: 50%;
  min-width: auto;
  padding: 5px;
  top: 50px;
  transform: translate(-50%);
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
header nav .navbar-nav .nav-item.dropdown .dropdown-menu li .dropmenu-title {
  font-weight: 600;
  text-align: left;
  width: 100%;
  display: block;
  padding: 5px 16px;
}
header nav .navbar-nav .nav-item.dropdown .dropdown-menu li a {
  font-family: "Inter", sans-serif;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 16px;
}
header nav .navbar-nav .nav-item.dropdown .dropdown-menu li a:hover {
  background-color: #e9e9e9;
  color: #000;
}
header nav.global-header {
  background-color: #fff;
  padding: 10px;
  color: #fff;
  padding: 0px 0px;
}
header nav.product-header {
  position: relative;
  top: 0;
  transition: top 0.3s;
  background: rgb(188, 239, 255);
}
header nav.product-header .get-btn {
  display: none;
}
header nav.product-header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #555;
  z-index: 9;
  transition: background-color 0.25s linear, color 0.4s ease-in-out;
  background: #fff;
}
header nav.product-header.fixed .get-btn {
  display: block;
}
header nav.product-header .logo.subhead {
  display: none;
}
header nav.product-header.fixed .logo.subhead {
  display: block;
}
header nav.product-header .navbar-nav li a {
  font-weight: 600 !important;
}
header nav.product-header .navbar-nav li .dropdown-menu li .dropmenu-title {
  font-weight: 600;
}
header nav.product-header .navbar-nav li .dropdown-menu li a {
  font-weight: unset !important;
}

/* Burger Menu css */
nav .navbar-toggler {
  padding: 0px;
  border: none;
  box-shadow: none;
}
nav .navbar-toggler:focus {
  box-shadow: none;
}
nav .burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  cursor: pointer;
  transition: transform 330ms ease-out;
  transform: rotate(-45deg);
}
nav .line-menu.first-line {
  transform-origin: right;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform: rotate(-90deg) translateX(3px);
}
nav .line-menu.line-half {
  width: 50%;
}
nav .line-menu {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}
nav .navbar-toggler.collapsed .burger-menu {
  transform: rotate(0deg);
}
nav .navbar-toggler.collapsed .burger-menu .line-menu {
  background-color: #000;
}
nav .navbar-toggler.collapsed .burger-menu .line-menu.first-line {
  transform: rotate(0deg) translateX(0px);
}
nav .navbar-toggler.collapsed .burger-menu .line-menu.last-line {
  transform: rotate(0deg) translateX(0px);
}
nav .line-menu.last-line {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform: rotate(-90deg) translateX(-3px);
}

header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  width: 100%;
  float: left;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column {
  width: 33.33%;
  float: left;
  margin-right: 35px;
  padding-left: 10px;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .menu-sub-head {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 10px;
  margin-left: 10px;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .menu-sub-head
  h5 {
  color: #0d6efd;
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 5px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0px;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area {
  border-radius: 10px;
  padding: 10px 10px;
  display: block;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area:hover {
  background-color: #e9e9e9;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area:hover
  a {
  color: #000;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area:hover
  p {
  color: #000;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area
  a {
  color: #000;
  text-decoration: none;
  padding: unset;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area
  a
  h3 {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 600;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .product-hover-area
  a
  p {
  margin-bottom: 0px;
  font-size: 12px;
  color: #b9b9b9;
  width: -moz-max-content;
  width: max-content;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .explr-all-btn-area {
  padding: 10px;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .explr-all-btn-area
  a {
  text-decoration: none;
  padding: unset;
}
header
  #navbarTogglerDemo02
  .remove-relative
  .dropdown-menu
  li
  .product-menu-parent
  .product-main-box
  .product-drop-box
  .product-menu-full-content-parent
  .product-menu-column
  .product-names-menu
  .explr-all-btn-area
  a:hover {
  background-color: unset;
  color: #0d6efd;
}

/* Burger Menu End */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  header nav .logo img {
    width: 32px;
  }
  header nav .navbar-nav {
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
  }
  header nav .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 991px) {
  header nav .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header nav .navbar-nav {
    gap: 18px;
  }
}
.banner {
  background: rgb(188, 239, 255);
  background: linear-gradient(
    180deg,
    rgb(188, 239, 255) 50%,
    rgba(186, 255, 169, 0.1180847339) 100%
  );
  margin: 0px 0px 50px 0px;
  position: relative;
  display: flex;
  align-items: center;
}
.banner .banner-parent {
  display: flex;
  flex-direction: column;
}
.banner .banner-parent .banner-heading-para-parent {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.banner .banner-parent .banner-heading-para-parent h1 {
  font-size: 55px;
  font-weight: 600;
}
.banner .banner-parent .banner-heading-para-parent p {
  margin-top: 10px;
  text-align: center;
}
.banner .banner-parent .banner-button-parent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0px;
}
.banner .banner-parent .banner-button-parent .banner-buttons {
  margin: 0px 10px;
}
.banner .banner-parent .banner-button-parent .banner-buttons a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 7px 8px;
  border-radius: 5px;
  display: block;
}
.banner .banner-parent .banner-button-parent .banner-buttons .start-trail-btn {
  background-color: #000;
}
.banner
  .banner-parent
  .banner-button-parent
  .banner-buttons
  .start-trail-btn:hover {
  background-color: #0d6efd;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
.banner .banner-parent .banner-button-parent .banner-buttons .request-demo-btn {
  background-color: #0d6efd;
}
.banner
  .banner-parent
  .banner-button-parent
  .banner-buttons
  .request-demo-btn:hover {
  background-color: #000;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
.banner .banner-parent .banner-image-parent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0px;
}
.banner .banner-parent .banner-image-parent img {
  width: 80%;
}
.accordin-section {
  background-color: #fff !important;
}
.accordin-section .accordin-title .heading-center {
  text-align: center;
  padding: 20px 40px;
}
.accordin-section .accordin-title .heading-center h2 {
  font-size: 35px;
  font-weight: 600;
}
.accordin-section .accordion {
  padding: 20px 0px 50px 0px;
}
.accordin-section .accordion .accordion-item {
  border: unset;
}
.accordin-section .accordion .accordion-item .accordion-header .progress {
  height: 1px !important;
}
.accordin-section
  .accordion
  .accordion-item
  .accordion-header
  .progress
  .progress-bar {
  background-color: #3b87f7;
}
.accordin-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  background: #f9fafa;
  font-weight: 700;
  color: #3580fe;
  font-size: 20px;
  box-shadow: unset;
}
.accordin-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: #000;
  background-color: #fff;
}
.accordin-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  color: #3580fe;
}
.accordin-section .accordion .accordion-item .accordion-collapse.show {
  background: #f9fafa;
}
.accordin-section .accordion .back-right-accordin {
  background-color: #f7faff;
  border-radius: 25px;
}
.accordin-section
  .accordion
  .back-right-accordin
  .accordion-body
  .accordin-image-area {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.accordin-section
  .accordion
  .back-right-accordin
  .accordion-body
  .accordin-image-area
  img {
  width: 500px;
}

.control-arctime {
  background: #f9fbfe;
  padding: 45px;
}
.control-arctime .time-control-head {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.control-arctime .time-control-head h2 {
  font-size: 40px;
  font-weight: 700;
}
.control-arctime .time-control-head p {
  text-align: center;
}
.control-arctime .control-time-text-area {
  margin-top: 45px;
}
.control-arctime .control-time-text-area h4 {
  font-size: 28px;
}
.control-arctime .control-time-text-area p {
  font-size: 16px;
}
.control-arctime .control-time-text-area .accordin-app-name {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 6px;
  align-items: flex-start;
  gap: 6px;
  list-style-type: none;
  padding-left: 0px;
}
.control-arctime .control-time-text-area .accordin-app-name .accordion-list a {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 4px 11px;
  border: 1px solid #ceceea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 5px 0 rgba(67, 46, 134, 0.05);
  text-align: center;
  text-decoration: none;
  color: #000;
}
.control-arctime .control-time-image-area {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.control-arctime .control-time-image-area img {
  width: 550px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tile-section-app {
  margin-top: 60px;
}
.tile-section-app .tile-header h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 50px;
}
.tile-section-app .tile-area-parent .tile-apps {
  border-radius: 5px;
}
.tile-section-app .tile-area-parent .tile-apps.clor-pink {
  background-color: #fcf6dd;
}
.tile-section-app .tile-area-parent .tile-apps.clor-sky-blue {
  background-color: #e1f5fc;
}
.tile-section-app .tile-area-parent .tile-apps.clor-light-blue {
  background-color: #e1f6e9;
}
.tile-section-app .tile-area-parent .tile-apps .tile-app-logo {
  height: 50px;
  margin: 20px 0px;
}
.tile-section-app .tile-area-parent .tile-apps h5 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
.tile-section-app .tile-area-parent .tile-apps p {
  font-size: 20px;
}
.tile-section-app .expl-all-prduct {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}
.tile-section-app .expl-all-prduct .expl-all-btn {
  color: #3b82f4;
  text-decoration: none;
  font-size: 25px;
}

.carefulcraft-section {
  background-color: #f9f8f9;
  padding: 20px 0px;
}
.carefulcraft-section .careful-craft-area .in-sight-heading {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding: 30px 0px;
  margin-bottom: 0px;
}
.carefulcraft-section .careful-craft-area p {
  text-align: center;
  font-size: 20px;
  padding: 6px 7px;
  margin-bottom: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}
.carefulcraft-section .careful-craft-area .insight-tile-area {
  padding: 20px 0px;
}
.carefulcraft-section .careful-craft-area .insight-tile-area .insight-ul {
  list-style-type: none;
  padding-left: 0px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
}
.carefulcraft-section
  .careful-craft-area
  .insight-tile-area
  .insight-ul
  .insight-li
  .insight-img-area {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 25px;
  align-items: center;
  width: 250px;
}
.carefulcraft-section
  .careful-craft-area
  .insight-tile-area
  .insight-ul
  .insight-li
  .insight-img-area
  .insight-image {
  width: 100px;
  height: 100px;
  padding: 10px 10px;
}
.carefulcraft-section
  .careful-craft-area
  .insight-tile-area
  .insight-ul
  .insight-li
  .insight-para
  p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-weight: 600;
}

.testimonail {
  overflow: hidden;
  border-radius: 45px;
}
.testimonail .testi-bg-clr {
  background: linear-gradient(
    90deg,
    rgb(217, 236, 255) 50%,
    rgb(239, 245, 255) 100%
  );
}
.testimonail .testi-bg-clr .head-title {
  margin-bottom: 50px;
}
.testimonail .testi-bg-clr .head-title h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: center;
}
.testimonail .testi-bg-clr .head-title p {
  text-align: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
}
.testimonail .testi-bg-clr #owl-carousel-testimonail {
  padding: 65px 0px;
}
.testimonail .testi-bg-clr #owl-carousel-testimonail .item .testi-box {
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 30px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text {
  width: 35%;
  padding: 50px 20px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text
  img {
  width: 250px;
  height: 250px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text
  .testimony-image-name {
  display: none;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text
  h5 {
  font-size: 22px;
  font-weight: 700;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text
  p {
  text-align: center;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testi-image-text
  span {
  text-align: center;
  color: #fa7769;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-text {
  position: relative;
  width: 65%;
  margin-right: 25px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-text
  p {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  color: #1b70d3;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-text
  p
  .end-quotation {
  position: absolute;
  bottom: 30px;
  font-size: 40px;
  right: 30px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-text
  p
  .start-quotation {
  position: absolute;
  font-size: 40px;
  left: 5px;
  top: -25px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-name
  h5 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .item
  .testi-box
  .testimony-name
  p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .owl-nav
  [class*="owl-"]:hover {
  background-color: transparent;
}
.testimonail .testi-bg-clr #owl-carousel-testimonail .owl-nav.disabled {
  display: none;
}
.testimonail .testi-bg-clr #owl-carousel-testimonail .owl-nav.disabled button {
  position: absolute;
  bottom: 40%;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .owl-nav.disabled
  button.owl-prev {
  left: -50px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .owl-nav.disabled
  button.owl-next {
  right: -50px;
}
.testimonail
  .testi-bg-clr
  #owl-carousel-testimonail
  .owl-nav.disabled
  button
  span {
  font-size: 55px;
  color: #ffc5bf;
}

.smart-notify {
  padding: 20px 40px;
  background-color: #fff5be;
}
.smart-notify .notify-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.smart-notify .notify-text h2 {
  font-size: 35px;
  font-weight: 700;
}
.smart-notify .notify-text p {
  font-size: 17px;
  margin-top: 10px;
}
.smart-notify .notify-image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.smart-notify .notify-image img {
  width: 350px;
}

.download-now-section {
  padding: 50px 0px;
}
.download-now-section .downld-nw {
  background-color: #4487ff;
  border-radius: 10px;
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.download-now-section .downld-nw h2 {
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
.download-now-section .downld-nw a {
  color: #4487ff;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 15px;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
}

footer {
  padding: 60px 0px;
}
footer .newsletter h4 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}
footer .newsletter p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
}
footer .newsletter form {
  background-color: #f0faf0;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .newsletter form input {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 12px 20px;
  height: 55px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
footer .newsletter form input:focus {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
footer .newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
footer .newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
footer .newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
footer .newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
footer .newsletter form button {
  height: 55px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 250px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #0d6efd;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
  transition: background-color 0.25s linear, color 0.4s ease-in-out;
  text-decoration: none;
  margin: 0px 0px 0px 0px;
}
footer .newsletter form button:before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #000;
  z-index: -1;
  transition: all 0.3s ease-out;
  border-radius: inherit;
}
footer .newsletter form button:hover,
footer .newsletter form button.active {
  color: #fff;
  background-color: #000;
}
footer .newsletter form button:hover::before {
  width: 100%;
}
footer .aboutus-company .pad-lft-rgt-40 {
  padding: 0px 40px;
}
footer .aboutus-company .pad-lft-rgt-40 .company-footer ul,
footer .aboutus-company .pad-lft-rgt-40 .support-footer ul,
footer .aboutus-company .pad-lft-rgt-40 .follow-footer ul {
  list-style-type: none;
  padding-left: 0px;
}
footer .aboutus-company .pad-lft-rgt-40 .company-footer ul li a,
footer .aboutus-company .pad-lft-rgt-40 .support-footer ul li a,
footer .aboutus-company .pad-lft-rgt-40 .follow-footer ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
footer .aboutus-company .pad-lft-rgt-40 .follow-icon ul li a {
  font-size: 25px;
}
footer .aboutus-company .abt-us p {
  font-size: 17px;
}
footer .aboutus-company .company-footer ul li a,
footer .aboutus-company .support-footer ul li a,
footer .aboutus-company .follow-footer ul li a {
  font-size: 15px;
}
footer .aboutus-company h5 {
  font-size: 25px;
  font-weight: 700;
}
footer .copyright {
  padding-top: 50px;
}
footer .copyright a.mail-text {
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
}
footer .copyright a.mail-text:hover {
  color: #0d6efd;
}
footer .copyright ul.social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
footer .copyright ul.social-media li img {
  width: auto;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.2s ease;
}
footer .copyright ul.social-media li img:hover {
  transform: scale(1.2);
}
.arc-crm-revamp-tab-content img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media only screen and (min-width: 320px) and (max-width: 420px) {
  .banner {
    margin: 52px 0px 25px 0px;
    padding-top: 20px;
    align-items: flex-start;
    height: 780px;
  }
  .banner h1 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .banner p {
    font-size: 15px;
    text-align: justify;
  }
  .banner p br {
    display: none;
  }
  .banner button {
    margin: 20px 0px 0px 0px;
    font-size: 14px;
  }
  .banner .banner-div {
    bottom: 0px;
    top: auto;
    width: 100%;
    height: 50%;
  }
  .banner .banner-div img.banner-img {
    object-position: top;
    -o-object-position: top;
  }
  .banner .banner-div img.banner-assets {
    top: auto;
    bottom: 50px;
    left: -8px;
    transform: scalex(-1);
  }
  footer .newsletter h4 {
    font-size: 23px;
    text-align: center;
  }
  footer .newsletter p {
    font-size: 15px;
    text-align: center;
  }
  footer .newsletter form {
    margin-top: 15px;
  }
  footer .newsletter form input {
    height: 40px;
    font-size: 15px;
  }
  footer .newsletter form button {
    height: 40px;
    width: 175px;
    font-size: 14px;
  }
  footer .copyright a.mail-text {
    display: flex;
    justify-content: center;
    font-size: 15px;
  }
  footer .copyright ul.social-media {
    justify-content: center;
    margin-top: 15px;
  }
  footer .copyright ul.social-media li img {
    height: 18px;
  }
}
@media only screen and (min-width: 421px) and (max-width: 767px) {
  .banner {
    margin: 52px 0px 25px 0px;
    padding-top: 35px;
    align-items: flex-start;
    height: 780px;
  }
  .banner h1 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .banner p {
    text-align: justify;
    font-size: 16px;
  }
  .banner p br {
    display: none;
  }
  .banner button {
    margin: 20px 0px 0px 0px;
    font-size: 14px;
  }
  .banner .banner-div {
    bottom: 0px;
    top: auto;
    width: 100%;
    height: 50%;
  }
  .banner .banner-div img.banner-img {
    object-position: top;
    -o-object-position: top;
  }
  .banner .banner-div img.banner-assets {
    top: auto;
    bottom: 50px;
    left: -8px;
    transform: scalex(-1);
  }
  footer .newsletter h4 {
    font-size: 24px;
    text-align: center;
  }
  footer .newsletter p {
    font-size: 15.5px;
    text-align: center;
  }
  footer .newsletter form {
    margin-top: 15.5px;
  }
  footer .newsletter form input {
    height: 45px;
    font-size: 15.5px;
  }
  footer .newsletter form button {
    height: 45px;
    width: 220px;
    font-size: 14.5px;
  }
  footer .copyright a.mail-text {
    display: flex;
    justify-content: center;
    font-size: 15.5px;
  }
  footer .copyright ul.social-media {
    justify-content: center;
    margin-top: 15px;
  }
  footer .copyright ul.social-media li img {
    height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .banner {
    height: 500px;
    margin: 68px 0px 25px 0px;
  }
  .banner .banner-div {
    width: 40%;
  }
  .banner h1 {
    font-size: 28px;
  }
  .banner p {
    font-size: 15.5px;
  }
  .banner p br {
    display: none;
  }
  .banner button {
    font-size: 14px;
  }
  footer .newsletter h4 {
    font-size: 25px;
  }
  footer .newsletter p {
    font-size: 15.5px;
  }
  footer .newsletter form input {
    height: 45px;
    font-size: 15.5px;
  }
  footer .newsletter form button {
    height: 45px;
    font-size: 15px;
    width: 225px;
  }
  footer .copyright a.mail-text {
    font-size: 15.5px;
  }
  footer .copyright ul.social-media li img {
    height: 20px;
  }
}
#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  font-size: 16px;
  padding: 0px;
  width: 35px;
  height: 35px;
  z-index: 999;
  background: linear-gradient(to top, #9cc0f5 0.96%, #0d6efd 71.84%);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  animation: movebtn 3s ease-in-out infinite;
  transition: all 0.5s ease-in-out;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  justify-content: center;
  align-items: center;
}
#goToTopBtn img {
  width: 20px;
  transform: rotate(270deg);
}
@keyframes movebtn {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
} /*# sourceMappingURL=arctime-product.css.map */
nav .logo img {
  width: 30% !important;
}
.arc-rev nav .navbar-nav .nav-item .nav-link {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 15px;
}
.arc-rev p {
  line-height: 29px;
}
.arc-revamp-f .aboutus-company .footer-section .company-footer ul li a,
footer .aboutus-company .footer-section .support-footer ul li a,
footer .aboutus-company .footer-section .follow-footer ul li a {
  font-family: "Inter", sans-serif !important;
}
.arc-revamp-f .aboutus-company .copy-right p {
  font-family: "Inter", sans-serif !important;
}
.carousel {
  position: absolute !important;
  display: flex !important;
  flex-direction: column-reverse !important;
}
.carousel-indicators {
  position: unset;
  width: fit-content;
  left: 0px !important;
  bottom: -10px !important;
  margin: 0;
  right: unset !important;
  z-index: 2;
}
.carousel-indicators [data-bs-target] {
  background-color: #d9d9d9;
}
.rating-section {
  background-color: #f0f8ff;
  padding: 80px 0px;
}
.award-winning {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #6bc0ec;
  border-radius: 25px;
  box-shadow: 0px 1px 4px 1px #7aa2e5;
  height: 440px;
}
.rating-section h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
}
.rating-left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rating-row {
  position: relative;
}
.rating-row::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 41%; /* Adjust the position to align perfectly */
  width: 2px; /* Line thickness */
  background-color: #3580fe; /* Line color */
  height: 90%; /* Adjust height as needed */
  transform: translateX(-50%);
}
/* .rating-left-side .rating-img {
  width: 110px;
} */

/* .rating-left-side .rating-number {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0px;
}
.rating-number h5 {
  font-weight: 700;
} */
.slider-parent {
  display: flex;
  flex-direction: column;
}
.name-star {
  display: flex;
  gap: 10px;
}
.name-star h3 {
  margin-bottom: 20px;
  margin-top: 10px;
}
.name-star img {
  width: 80px;
  margin-bottom: 15px;
  margin-top: 5px;
}
.slider-parent h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
.slider-parent h6 {
  font-weight: 700;
}
.carousel-control-prev,
.carousel-control-next {
  display: none;
}
.heading-center {
  text-align: center;
  margin-bottom: 30px;
}
/* 04-02-2025 */
.rating-cards {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 265px;
  margin-right: 30px;
}
.rating-number {
  margin-top: 20px;
}
.rating-number .g2-img {
  margin-left: 35px;
  width: 45px;
}
.rating-img {
  width: 25%;
}
.business-better-arctime {
  background-color: #f2f8ff;
  padding: 30px 0px;
}
.case-study-box {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 20px;
}
.pad-lft-0 {
  padding-left: 0px;
}
.business-run-image img {
  width: 100%;
}
.content-case-study-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}
.content-case-study-box img {
  width: 120px;
  margin-bottom: 20px;
}
.read-study img {
  width: 35px;
  margin-left: 30px;
  text-decoration: none;
  margin-bottom: unset;
}
.read-study {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.content-case-study-box h4 {
  font-weight: 700;
  line-height: 40px;
  font-size: 26px;
}
.content-case-study-box p {
  font-size: 20px;
  color: #5a5a5a;
}
.control-time-image-area .payroll-process {
  border-radius: 10px;
  width: 100%;
}
.arctime-revamp .control-arctime .control-time-image-area img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}
@media only screen and (min-width: 320px) and (max-width: 1199px) {
  .arccrm-revamp .banner,
  .arctime-revamp .banner {
    height: unset;
  }
  .banner .banner-parent h1 {
    font-size: 35px !important;
  }
  .rating-section h2 {
    font-size: 38px !important;
  }
  .rating-section .carousel {
    position: relative !important;
    margin-top: 20px;
  }
  .arc-time-revamp-accordin .heading-center h2 {
    font-size: 38px !important;
  }
  .arc-time-revamp-accordin .accordion .accordin-image-area img {
    width: 100% !important;
  }
  .accordin-section .accordin-title .heading-center h2 {
    font-size: 35px !important;
  }
  .control-arctime .time-control-head h2 {
    font-size: 35px !important;
    text-align: center;
  }
  .control-arctime .control-time-image-area img {
    width: 100%;
  }
  .arctime-revamp .process-payroll-faster h2 {
    font-size: 35px !important;
  }
  .arctime-revamp .process-payroll-faster .control-time-image-area img {
    width: 100%;
  }
  .arctime-revamp .capabilities-section h2 {
    font-size: 35px !important;
  }
  .arctime-revamp .capabilities-section .capabilities-grid-section {
    max-height: unset;
  }
  .download-now-section .downld-nw h2 {
    font-size: 35px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 849px) {
  .nav.nav-tabs.arc-crm-revamp-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .nav.nav-tabs.arc-crm-revamp-tab li button {
    border-radius: 10px !important;
    border: 1px solid #b0b0b0 !important;
    width: 250px;
  }
  .arc-crm-revamp-tab-content img {
    width: 100% !important;
  }
  .control-arctime .container .row:nth-child(3) {
    flex-direction: column-reverse;
  }
  .arctime-revamp .process-payroll-faster .control-time-image-area img {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .capabilities-section .capabilities-grid-section {
    margin-bottom: 20px;
  }
  .carefulcraft-section .insight-tile-area .insight-ul {
    flex-direction: column;
    gap: 20px;
  }
  .testimonail .owl-carousel .owl-stage-outer .testi-box {
    flex-direction: column !important;
  }
  .testimonail .owl-carousel .owl-stage-outer .testi-image-text {
    width: 100% !important;
  }
  .testimonail .owl-carousel .owl-stage-outer .testimony-text {
    margin-right: 0px !important;
    width: 100% !important;
    padding: 20px;
  }
  .global-header .container {
    display: flex;
    justify-content: flex-end;
  }
}

/* 14-07-2025 start */
@media only screen and (min-width: 300px) and (max-width: 767px) {
  .banner-images .img-clock{
top: -80px;
left: -25px;
  }
  .banner-images .img-coin{
top: -70px;
right: -15px;
  }
  .banner-images .img-letter{
bottom: -75px;
left: -15px;
  }
  .banner-images .img-heart{
    bottom: -80px;
        right: -20px;
  }
  header nav .logo img{
    width: 160px !important ;
  }
  .scroll-overlay-section .scroll-block{
    position: relative !important;
    top:0px !important
  }
  .hours-in-payroll .sticky-title{
position: relative !important;
width: auto !important;
top: 0px !important;
  }
  .hours-in-payroll .d-md-none .feature-block{
    margin-bottom: 20px !important;
  }

  .bulb-section img{
    left: -15px !important;
  }
  .more-to-know{
    height: auto !important;
  }
  .more-to-know .box-parent{
    margin: unset !important;
  }
  
    .more-to-know  .second-block{
gap: 2rem !important;
   }
    .more-to-know .responsive-box {
      display: flex !important;
      justify-content: center !important;
   }
}

@media only screen and (max-width: 768px){
  .hours-in-payroll .feature-block img {
    border-radius: 8px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .more-to-know {
    height: auto !important;
  }
  .more-to-know .responsive-box {
      display: flex !important;
      justify-content: center !important;
   }
  .more-to-know .responsive-box .more-box{
      width: 100% !important;
      min-width: unset !important;
      max-width: none;
   }
  .more-to-know .second-block{
      flex-wrap: unset !important;
   }
}
/* 14-07-2025 end */

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .banner {
    height: auto !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 957px) {
  .control-arctime .control-time-image-area img {
    width: 100% !important;
  }
  .accordin-section .nav-tabs.arc-crm-revamp-tab li button {
    border: 1px solid rgb(165, 165, 165) !important;
    border-radius: 5px !important;
  }
  .accordin-section .nav-tabs.arc-crm-revamp-tab {
    gap: 10px;
    /* margin: 0 10px;a */
  }
  .award-winning {
    height: auto;
  }
  .capabilities-section .capabilities-grid-section {
    min-height: 595px !important;
  }
}


.banner-section {
      position: relative;
      background: #f0f7fd;
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
      background-image: url(/assets/img/New-Arc-Time-Banner.png);
      background-repeat: no-repeat;
      background-size: cover;
    }
    .banner-section .container{
      position: relative;
      z-index: 1;
    }
    #typing-text {
  font-weight: bold;
  font-size: 1.5rem;
  display: inline-block;
}
.banner-section .ti-cursor {
  margin-left: 2px;
}
.banner-section #para-1, .banner-section #para-2 {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.banner-section h1{
  font-weight: 600;
  color: #021525;
  margin-bottom: 30px;
  max-width: 750px;
  margin: 0 auto;
  font-size: 45px;
  padding-bottom: 20px;
}
    .banner-section h2 {
      font-weight: 700;
    }
    .banner-section .alert-img{
      width: 30px;
      height: 25px;
      margin-bottom: 5px;
    }


    .banner-section .highlight {
      font-weight: 600;
      color: #021525;
    }

    .banner-section p {
      max-width: 700px;
      margin: 15px auto;
      font-size: 18px;
    }

    .banner-images img {
      position: absolute;
      width: 80px;
      height: 80px;
    }
    .banner-section .btn-request-demo{
      background:linear-gradient(90deg, #1683D9, #02121F);
      border-radius: unset;
      border: unset;
      transition: 0.3s;
    }
    .banner-section .btn-request-demo:hover{
      background:linear-gradient(90deg, #02121F, #1683D9);
      border-radius: unset;
      border: unset;
      color: #fff;
    }

    @keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

/* Wiggle (rotation) */
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}


    /* Image positions */
    .img-clock {
      top: 10px;
      left: 20px;
       animation: shake 1.2s infinite ease-in-out;
    }

    .img-coin {
      top: 30px;
      right: 30px;
      animation: float 2.5s infinite ease-in-out;
    }

    .img-letter {
      bottom: 20px;
      left: 30px;
      animation: wiggle 2s infinite ease-in-out;
    }

    .img-heart {
      bottom: 20px;
      right: 20px;
      animation: float 3s infinite ease-in-out;
    }

    .img-clock:hover {
  animation: shake 0.8s infinite;
}

    .btn-request-demo {
      background-color: #007bff;
      color: white;
      font-weight: 600;
      border-radius: 5px;
      padding: 10px 24px;
      margin-top: 30px;
    }

    .btn-request-demo:hover {
      background-color: #0056b3;
    }

    /* scroll-overlay-section  */


    section.scroll-overlay-section {
       padding: 30px 0;
       position: relative;
 
    }
.scroll-overlay-section p{
  font-size: 18px;
}

.scroll-overlay-section h5{
  font-size: 20px;
}

   .scroll-overlay-section .scroll-block-wrapper {
  position: relative;
  /* height: 300vh; */
}
    .scroll-overlay-section .scroll-block{
      position: sticky;
  top: 80px;
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 0px;
  z-index: 1;
  /* box-shadow: 0 5px 10px rgba(0,0,0,0.05); */
  transition: all 0.3s ease;
  border-radius: 25px;
  min-height: 500px;
  transform-origin: top center;
  will-change: transform;
    }
    .scroll-overlay-section .right-image{
width: 100%;
padding: 0px 50px;
    }

    

.block1 { z-index: 1; }
.block2 { z-index: 2; }
.block3 { z-index: 3; }

.gradient1 {
  background: linear-gradient(200deg, #bff3fe 0%, #f7f4f3 100%);
}
.gradient2 {
  background: linear-gradient(200deg, #ebf5d6 0%, #f7f4f3 100%);
}
.gradient3 {
  background: linear-gradient(200deg, #fcf1c9 0%, #f7f4f3 100%);
}
    

    .scroll-block h4 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    .scroll-block p {
      margin-bottom: 0;
    }

    

    section h2{
      text-align: center;
      font-size: 45px;
      font-weight: 700;
      margin-bottom: 30px;
  background: -webkit-linear-gradient(0deg, #1179FC, #B880FC, #D381FC, #7F7EFC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    }
    

.scroll-section-title {
  padding: 10px 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: -webkit-linear-gradient(0deg, #1179FC, #B880FC, #D381FC, #7F7EFC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.scroll-overlay-section .scroll-block-wrapper .scroll-block .block-icon-img{
  width: 50px;
  height: 50px;

}
.blinking-dot {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.blinking-dot.blue {
  background: #2968c7;
  animation: blinkblue 1.5s infinite;
}

.blinking-dot.green {
  background: #57bd7d;
  animation: blinkgreen 1.5s infinite;
}
.blinking-dot.yellow {
  background: #cd900e;
  animation: blinkyellow 1.5s infinite;
}

@keyframes blinkblue {
  0% { box-shadow: 0 0 0 0 rgba(41, 104, 199, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(41, 104, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 104, 199, 0); }
}

@keyframes blinkgreen {
  0% { box-shadow: 0 0 0 0 rgba(87, 189, 125, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(87, 189, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 189, 125, 0); }
}

@keyframes blinkyellow {
  0% { box-shadow: 0 0 0 0 rgba(205, 144, 14, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(205, 144, 14, 0); }
  100% { box-shadow: 0 0 0 0 rgba(205, 144, 14, 0); }
}



 .hours-in-payroll img {
    max-height: 600px;
    object-fit: contain;
  
}
.hours-in-payroll p{
  font-size: 18px;
}
.hours-in-payroll .width-min{
  width: 700px;
  margin: 0 auto;
}
.hours-in-payroll .small-title{
font-weight: 700;
font-size: 20px;
}

.hours-in-payroll h4{
  font-weight: 700;
  font-size: 30px;
  color: #1179FC;
}

 .hours-in-payroll .sticky-title {
    /* position: sticky; */
    top: 60px;
    z-index: 10;
    padding: 1rem 0;
  }

  .hours-in-payroll .sticky-image {
    position: sticky;
    top: 30px;
    height: 600px;
    z-index: 2;
  }

  .hours-in-payroll .image-stack img {
    max-height: 580px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  
  width: auto;
  z-index: 0;
}

  .hours-in-payroll .image-stack img.active {
  opacity: 1;
   transform: translateX(-50%) translateY(10%) scale(1);
  z-index: 2;
}

.hours-in-payroll .image-stack {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
}
  .hours-in-payroll .feature-block{
 margin-bottom: 240px !important;
  }


@media (max-width: 767px) {
  .hours-in-payroll .sticky-image,
  .hours-in-payroll .image-stack {
    height: auto;
    min-height: auto;
    padding-top: 0;
  }

  .hours-in-payroll .image-stack img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-height: 300px;
  }
}


.bulb-section img{
width: 60px;
    height: 60px;
    left: -25px;
    top: -20px;
}
.bulb-section p{
  font-size: 18px !important;
}
.bulb-section .bulb-box {
padding: 60px !important;
}
.integrate-clock-in p{
font-size: 18px !important;
}

.bulb-wiggle {
  animation: bulbWiggle 1.5s ease-in-out infinite !important;
  transform-origin: center center;
}
@keyframes bulbWiggle {
 0% { transform: rotate(0deg); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}
.bulb-wiggle:hover {
  animation: wiggle 1.5s ease-in-out;
}
.integrate-clock-in{
background-image: url(/images/Integrated-Clock-In-Methods-Bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 40px 0px;
}
.integrate-clock-in-box{
  padding-top: 0px !important;
}
.integrate-clock-in-box .devices-image{
width: 100%;
}

.more-to-know{
  background-image: url(/images/More-to-know-Bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 300px;
  overflow: visible;
  margin-bottom: 120px;
}
.more-to-know .more-box{
background-color: #011135 !important;
min-width: 280px;
  max-width: 280px;
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; /* align icon + text more naturally */
  gap: 12px; /* spacing between icon and text */
  text-align: left;
  border-radius: 10px;
  font-size: 16px;
}
.more-to-know .d-flex.flex-wrap .more-box {
  flex: 0 1 280px;
}
.more-to-know h2{
  text-align: left;
}
.more-to-know p{
text-align: left;
font-size: 18px;
}
.more-to-know .small-icons{
  width: 40px;
  height: 40px;
}

.justify-content-space-evenly{
  justify-content: space-evenly;
}
.more-to-know .box-parent{
   position: relative;
   margin: 40px auto -80px auto;

}

footer, footer a{
  color: #010125 !important;
}

footer h6{
  font-size: 20px;
  font-weight: 700;
}
.copyright-text{
  font-weight: 600;
}
.archarina-footer{
  width: 220px;
  height: 50px;
}
/* 04-07-2025 End */