/*-----------------------------------------------------------------------------------

    Template Name: Advanced App Landing Page Template
    Author: UIdeck
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
      01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #677284;
}

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

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #3A424E;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677284;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 25px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #fc9231;
  /* background-color: #3698EE; */
}

@media (max-width: 767px) {
  .main-btn {
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}

.main-btn:hover {
  /* background-color: rgba(54, 152, 238, 0.8); */
  background-color: #ff6b38;
  color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-btn.main-btn-2 {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  line-height: 53px;
}

@media (max-width: 767px) {
  .main-btn.main-btn-2 {
    line-height: 41px;
  }
}

.main-btn.main-btn-2:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 44px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 32px;
  }
}

.section_title p {
  margin-top: 25px;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
  animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .ytp-spinner-circle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #3698EE #3698EE #F7F8F9;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #F7F8F9;
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #F7F8F9;
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

/*===========================
        02.HEADER css 
===========================*/

/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 10px 0;
}

.navbar {
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

/* Mobile collapse background */
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px rgba(34, 34, 34, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  margin-left: 20px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 16px;
  color: #3A424E;
  transition: all 0.3s ease-out 0s;
  padding: 4px 10px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a {
    color: #3A424E;
    display: block;
    padding: 4px 0;
  }
}

/* REMOVE BACKGROUND EFFECT COMPLETELY */
.navbar-nav .nav-item a::before {
  display: none;
}

/* HOVER + ACTIVE — MAKE TEXT ORANGE */
.navbar-nav .nav-item.active > a,
.navbar-nav .nav-item:hover > a {
  color: #fc9231;
}

/* Sticky mode — preserve active color */
.sticky .navbar-nav .nav-item.active > a,
.sticky .navbar-nav .nav-item:hover > a {
  color: #fc9231;
}

/* SUBMENU STYLING */
.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
  transition: all 0.3s ease-out 0s;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #3698EE;
}

/* Mobile submenu toggler */
.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

/* Sticky navbar toggler icon color */
.sticky .navbar-toggler .toggler-icon {
  background-color: #3A424E;
}

/* Allow 2-line nav items */
.nav-item-multiline a {
    line-height: 18px;
    text-align: center;
    white-space: normal; /* allow wrapping */
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Desktop spacing adjustment */
@media (min-width: 992px) {
  .nav-item-multiline {
      margin-top: -4px; /* vertically align with others */
  }
}

/* Mobile – ensure clean spacing */
@media (max-width: 767px) {
  .nav-item-multiline a {
      padding: 6px 0;
      font-size: 16px;
  }
}


/*===== HEADER HERO =====*/
.header_hero {
  position: relative;
  z-index: 5;
  background-position: bottom center;
  padding-top: 10px;
  height: 800px;
}

@media only screen and (min-width: 1400px) {
  .header_hero {
    height: 900px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_hero {
    height: 700px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_hero {
    height: auto;
  }
}

@media (max-width: 767px) {
  .header_hero {
    height: auto;
  }
}

.header_hero::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 1200px;
  background-image: url(../images/svgviewer-output.svg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.shape {
  position: absolute;
}

.shape.shape-1 {
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .shape.shape-1 {
    left: 0;
  }
}

.shape.shape-2 {
  bottom: -200px;
  left: calc((100% - 1700px) / 2);
}

.shape.shape-3 {
  top: 0;
  right: 0;
}

.header_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_image {
    position: relative;
    width: 720px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .header_image {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header_image {
    width: 540px;
  }
}

.header_image .image {
  position: relative;
  padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_image .image {
    top: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header_image .image {
    top: 50px;
  }
}

.header_image .image .dots {
  position: absolute;
  right: 10%;
  bottom: 0px;
  z-index: -1;
  -webkit-animation: dots 6s ease-out infinite;
  animation: dots 6s ease-out infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_image .image .dots {
    width: 125px;
  }
}

@media (max-width: 767px) {
  .header_image .image .dots {
    width: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header_image .image .dots {
    width: 130px;
  }
}

@keyframes dots {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes dots {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_hero_content {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .header_hero_content {
    padding-top: 50px;
  }
}

.header_hero_content .header_title {
  font-size: 60px;
  font-weight: 700;
  color: #fc9231; /*color: #fc9231;*/
  margin-top: 20px;
}

.header_hero_content .header_subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #fff; /*color: #fc9231;*/
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_hero_content .header_title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .header_hero_content .header_title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header_hero_content .header_title {
    font-size: 38px;
  }
}

.header_hero_content .header_title span {
  color: #3698EE;
}

.header_hero_content p {
  margin-top: 35px;
  color: #fff;
}

.header_hero_content ul {
  padding-top: 20px;
}

.header_hero_content ul li {
  display: inline-block;
  margin-top: 15px;
}

.header_hero_content ul li + li {
  margin-left: 13px;
}

@media (max-width: 767px) {
  .header_hero_content ul li + li {
    margin-left: 8px;
  }
}

.header_hero_image img {
  width: 100%;
}

/* ===== APP STORE BUTTONS ===== */
.app_download_buttons {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.store_btn img {
  height: 52px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store_btn:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .app_download_buttons {
    justify-content: center;
  }

  .store_btn img {
    height: 46px;
  }
}

.store-badges {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-badge img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Mobile optimization */
@media (max-width: 767px) {
  .store-badges {
    justify-content: center;
  }

  .store-badge img {
    height: 48px;
  }
}

/*===========================
      03.FEATURES css 
===========================*/
.features_area {
  position: relative;
  z-index: 5;
}

.single_features {
  background-color: #fff;
  padding: 60px 25px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.1);
  box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.1);
}

.single_features:hover {
  -webkit-box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.2);
  box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.2);
}

.single_features:hover .features_icon i {
  border-radius: 50%;
}

.single_features .features_icon i {
  width: 108px;
  height: 108px;
  line-height: 108px;
  text-align: center;
  color: #fff;
  font-size: 40px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_features .features_content {
  margin-top: 25px;
}

.single_features .features_content .features_title {
  font-size: 24px;
  font-weight: 600;
  color: #3A424E;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_features .features_content .features_subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  color: #319366;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_features .features_content p {
  margin-top: 15px;
}

.single_features.features_1 .features_icon i {
  background-color: #F85146;
}

.single_features.features_2 .features_icon i {
  background-color: #3698EE;
}

.single_features.features_3 .features_icon i {
  background-color: #581CCB;
}

/* Slider Styles */

.features_slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

/* Track that moves left/right */
.features_track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Each slide takes full width of column */
.features_track .single_features {
  min-width: 100%;
}

/* Arrows inside card area */
.features_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  padding: 0;
  outline: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.features_arrow.prev {
  left: 18px;
}

.features_arrow.next {
  right: 18px;
}

.features_arrow:hover {
  background: rgba(49, 147, 102, 0.9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Dots */
.features_dots {
  margin-top: 18px;
}

.features_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  background: #d5dde5;
  cursor: pointer;
  transition: all 0.25s ease;
}

.features_dot.active {
  width: 22px;
  border-radius: 999px;
  background: #fc9231;
  /* background: #319366; */
}

/* Optional: subtle slide shadow/glow when active */
.features_slider .single_features {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.features_slider .single_features.active_slide {
  transform: translateY(-3px);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.08);
}


/*===========================
       04.ABOUT css 
===========================*/
.about_image {
  position: relative;
  padding-bottom: 30px;
}

.about_image .dots {
  position: absolute;
  bottom: 0;
  right: 20%;
  z-index: -1;
  -webkit-animation: dots_2 6s ease-out infinite;
  animation: dots_2 6s ease-out infinite;
}

@keyframes dots_2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes dots_2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.about_content .main-btn {
  margin-top: 40px;
  padding: 0 35px;
}

/*===========================
    PROBLEM / SOLUTION SECTION
===========================*/

.ps-row {
  margin-top: 10px;
}

.ps-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ps-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ps-icon-wrap i {
  font-size: 44px;
  color: #d9534f; /* problem icon color - red-ish */
}

.ps-icon-wrap.ps-icon-solution i {
  color: #319366; /* solution icon color - green */
}

.ps-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217, 83, 79, 0.1);
  color: #d9534f;
  font-weight: 600;
}

.ps-badge-solution {
  background: rgba(49, 147, 102, 0.12);
  color: #319366;
}

.ps-card-caption {
  margin-top: 18px;
  font-size: 14px;
  color: #677284;
  text-align: center;
}

/* Text side */
.ps-content {
  padding-left: 10px;
}

@media (max-width: 991px) {
  .ps-content {
    padding-left: 0;
    margin-top: 25px;
  }
}

.ps-title {
  font-size: 24px;
  font-weight: 700;
  color: #fc9231; /* orange heading */
  margin-bottom: 10px;
}

.ps-title-solution {
  color: #319366;
}

.ps-subtext {
  margin-bottom: 12px;
  color: #3A424E;
}

.ps-list {
  padding-left: 18px;
  margin: 0;
}

.ps-list li {
  margin-bottom: 6px;
  color: #3A424E;
}

/* On very small screens, add spacing between rows */
@media (max-width: 767px) {
  .ps-row + .ps-row {
    margin-top: 40px;
  }
}

/*===========================
    FEATURES & FIT (VIBE) SECTION
===========================*/

.vibe_area {
  background-color: #319366;
  /* background-color: #f9fafc;  light background, adjust if needed */
}

.vibe_area .title {
  color: #fff;
}

.vibe_area .oneline {
  color: #fc9231;
  font-weight: 600;
  font-size: 22px;
}

.vibe_card {
  background-color: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vibe_tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(252, 146, 49, 0.12); /* orange tint */
  color: #fc9231;
  font-weight: 600;
  margin-bottom: 10px;
}

.vibe_tag_alt {
  background: rgba(49, 147, 102, 0.12); /* green tint */
  color: #319366;
}

.vibe_title {
  font-size: 22px;
  font-weight: 700;
  color: #3A424E;
  margin-bottom: 14px;
}

.vibe_list {
  padding-left: 18px;
  margin: 0;
}

.vibe_list li {
  margin-bottom: 6px;
  color: #3A424E;
  font-size: 15px;
}

/* Chips */
.vibe_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 15px 0;
}

.vibe_chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 13px;
  color: #3A424E;
  white-space: nowrap;
}

.vibe_chip:nth-child(odd) {
  background: rgba(252, 146, 49, 0.06);
}

.vibe_chip:nth-child(even) {
  background: rgba(49, 147, 102, 0.06);
}

.vibe_note {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #319366;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .vibe_card {
    margin-top: 20px;
  }
}


/*===========================
       09.PRICING css 
===========================*/

.single_pricing {
  box-shadow: 0px 0px 35px 0px rgba(158, 158, 158, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  border-top: 4px solid transparent;
}

.single_pricing:hover {
  box-shadow: 0px 0px 35px 0px rgba(158, 158, 158, 0.2);
  transform: translateY(-4px);
}

.single_pricing .pricing_top_bar .pricing_title {
  font-size: 24px;
  font-weight: 600;
  color: #3A424E; /* theme dark */
}

/* Icon circle */
.single_pricing .pricing_top_bar i {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  background-color: #F7F8F9;
  font-size: 40px;
  border-radius: 50%;
  margin-top: 30px;
}

/* Price */
.single_pricing .pricing_top_bar .price {
  display: block;
  font-size: 44px;
  font-weight: 700;
  margin-top: 20px;
  padding-bottom: 20px;
}

/* Features list */
.single_pricing .pricing_list {
  border-top: 1px solid #E8E8E8;
  padding-top: 10px;
}

.single_pricing .pricing_list ul li {
  margin-top: 15px;
  font-size: 16px;
  color: #677284;
}

/* Button wrapper */
.single_pricing .pricing_btn {
  margin-top: 25px;
}

/* Default buttons (non-active cards) */
.single_pricing .pricing_btn .main-btn {
  border-color: #fc9231;
  color: #fc9231;
  background-color: #ffffff;
}

.single_pricing .pricing_btn .main-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #fc9231;
  color: #fff;
}

/* COLOR VARIANTS – aligned to theme */

/* Left card – orange accent */
.single_pricing.pricing_color_1 {
  border-top-color: #fc9231;
}

.single_pricing.pricing_color_1 .pricing_top_bar i {
  color: #fc9231;
}

.single_pricing.pricing_color_1 .pricing_top_bar .price {
  color: #fc9231;
}

/* Middle card – green (primary/active look) */
.single_pricing.pricing_color_2 {
  border-top-color: #319366;
}

.single_pricing.pricing_color_2 .pricing_top_bar i {
  color: #319366;
}

.single_pricing.pricing_color_2 .pricing_top_bar .price {
  color: #319366;
}

/* Right card – subtle blue accent (secondary) */
.single_pricing.pricing_color_3 {
  border-top-color: #3698EE;
}

.single_pricing.pricing_color_3 .pricing_top_bar i {
  color: #3698EE;
}

.single_pricing.pricing_color_3 .pricing_top_bar .price {
  color: #3698EE;
}

/* ACTIVE / RECOMMENDED PLAN (middle one) */
.single_pricing.pricing_active .pricing_btn {
  margin-top: 25px;
}

.single_pricing.pricing_active .pricing_btn .main-btn {
  background-color: #319366;
  color: #fff;
  border-color: #319366;
}

.single_pricing.pricing_active .pricing_btn .main-btn:hover {
  background-color: rgba(49, 147, 102, 0.85);
}

/* Optional: slightly stronger hover border on active card */
.single_pricing.pricing_active:hover {
  border-top-color: #319366;
}


/*===========================
    10.DOWNLOAD APP css 
===========================*/
.download_app_area {
  position: relative;
}

.download_app_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 9;
}

.download_app_image .image{
  margin-left: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .download_app_image .image img {
    width: 480px;
  }
}

.download_app {
  background: -webkit-gradient(linear, left top, right top, from(#287a54), to(#319366));
  background: linear-gradient(to right, #287a54 0%, #319366 100%);
  padding: 115px 60px 120px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 8;
  margin-top: 111px;
}


@media (max-width: 767px) {
  .download_app {
    padding: 115px 30px 120px;
  }
}

.download_shape {
  position: absolute;
  top: 50%;
  left: -80px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.download_shape_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.21;
}

.download_app_content {
  max-width: 470px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .download_app_content {
    max-width: 410px;
  }
}

.download_app_content .download_title {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  nt-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .download_app_content .download_title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .download_app_content .download_title {
    font-size: 30px;
  }
}

.download_app_content p {
  color: #fff;
  margin-top: 15px;
}

.download_app_content ul {
  padding-top: 30px;
}

.download_app_content ul li {
  display: inline-block;
  margin-top: 10px;
}

.download_app_content ul li + li {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .download_app_content ul li + li {
    margin-left: 0;
  }
}

.download_app_content ul li a {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .download_app_content ul li a {
    padding: 4px 10px 3px;
  }
}

.download_app_content ul li a .icon i {
  font-size: 25px;
  color: #3698EE;
}

@media (max-width: 767px) {
  .download_app_content ul li a .icon i {
    font-size: 18px;
  }
}

.download_app_content ul li a .content {
  padding-left: 15px;
}

@media (max-width: 767px) {
  .download_app_content ul li a .content {
    padding-left: 10px;
  }
}

.download_app_content ul li a .content .title {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .download_app_content ul li a .content .title {
    font-size: 16px;
  }
}

.download_app_content ul li a .content p {
  margin-top: 0;
  color: #677284;
  font-size: 12px;
}

@media (max-width: 767px) {
  .download_app_content ul li a .content p {
    font-size: 11px;
  }
}

/*===========================
        11.BLOG css 
===========================*/
.blog_area {
  position: relative;
  z-index: 99;
}

.single_blog {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 79px 0px rgba(158, 158, 158, 0.16);
  box-shadow: 0px 0px 79px 0px rgba(158, 158, 158, 0.16);
  overflow: hidden;
  border-radius: 10px;
}

.single_blog .blog_image img {
  width: 100%;
}

.single_blog .blog_content {
  text-align: center;
  padding: 15px 20px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_blog .blog_content .blog_meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single_blog .blog_content .blog_meta .meta_date span {
  font-size: 16px;
  color: #677284;
}

.single_blog .blog_content .blog_meta .meta_like ul li {
  display: inline-block;
}

.single_blog .blog_content .blog_meta .meta_like ul li + li {
  margin-left: 15px;
}

.single_blog .blog_content .blog_meta .meta_like ul li a {
  font-size: 16px;
  color: #677284;
}

.single_blog .blog_content .blog_meta .meta_like ul li a i {
  margin-left: 5px;
}

.single_blog .blog_content .blog_title {
  font-size: 24px;
  font-weight: 600;
  color: #fc9231;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_blog .blog_content .blog_subtitle {
  color: #3A424E;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_blog .blog_content .blog_title :hover {
  color: #3698EE;
}

.single_blog .blog_content .main-btn {
  margin-top: 25px;
  height: 40px;
  line-height: 36px;
  border: 2px solid;
  padding: 0 15px;
  color: #3698EE;
  border-color: #3698EE;
  background: #fff;
}

.single_blog .blog_content .main-btn:hover {
  background-color: #3698EE;
  color: #fff;
}

/*===========================
      CTA / WHY SCAN GENIE
===========================*/

/* CTA TEXT */
.upgrade_title {
    font-size: 34px;
    font-weight: 700;
    color: #fc9231;
}

.upgrade_subtitle {
    font-size: 16px;
    color: #3A424E;
    margin-top: 10px;
}

/* WHY TEXT */
.why_title {
    font-size: 34px;
    font-weight: 700;
    color: #319366;
}

.why_desc {
    font-size: 16px;
    margin-top: 8px;
    color: #3A424E;
}

/* HIGHLIGHT BOXES */
.highlight_box {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.highlight_box img {
    margin-bottom: 10px;
}

.highlight_box h6 {
    font-size: 15px;
    font-weight: 600;
    color: #3A424E;
}

/* Hover Effect */
.highlight_box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 30px rgba(0,0,0,0.1);
    background: #fc9231;
}

.highlight_box:hover h6,
.highlight_box:hover i {
    color: #fff;
}

/* Responsive Adjust */
@media(max-width: 991px){
    .highlight_box {
        padding: 20px;
    }
}


/*===========================
        12.FOOTER css 
===========================*/
.footer_area {
  position: relative;
  z-index: 9;
}

.footer_area::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1180px;
  background-image: url(../images/svgviewer-output-footer.svg);
  background-position: top center;
  background-size: cover;
  z-index: -1;
}

.footer_subscribe .subscribe_title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .footer_subscribe .subscribe_title {
    font-size: 30px;
  }
}

.footer_subscribe p {
  color: #fff;
  margin-top: 15px;
}

.subscribe_form {
  position: relative;
  margin-top: 35px;
}

.subscribe_form input {
  width: 100%;
  border: 0;
  color: #677284;
  padding: 0 30px;
  height: 60px;
  border-radius: 5px;
}

.subscribe_form input::-webkit-input-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input:-ms-input-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input::-ms-input-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input::placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input::-moz-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input::-moz-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form input::-webkit-input-placeholder {
  opacity: 1;
  color: #677284;
}

.subscribe_form .main-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 50px;
  height: 50px;
}

.footer_social ul li {
  display: inline-block;
  margin: 0 10px;
}

.subscribe_form textarea.footer_textarea {
  width: 100%;
  border: 0;
  color: #677284;
  padding: 15px 30px;
  height: 120px;
  border-radius: 5px;
  margin-top: 20px;
  resize: none;
}

.subscribe_form textarea.footer_textarea::placeholder {
  color: #677284;
  opacity: 1;
}

.subscribe_form .footer-submit-btn {
  position: relative;
  margin-top: 10px;
  width: 20%;
  height: 55px;
  line-height: 55px;
  display: inline-block;
}


.footer_social ul li a {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 41px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_social ul li a:hover {
  background-color: #fff;
  color: #3698EE;
}

.footer_copyright p {
  color: #fff;
}

.footer_copyright p a {
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_copyright p a:hover {
  color: #3698EE;
}

.footer_links p {
  color: #fff;
}

.footer_links p a {
  color: #fc9231;
  margin-right: 10px;
  margin-left: 10px;
}

.footer_links p a:hover {
  color: #ff6b38;
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  background-color: #fc9231;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #ff6b38;
}
/*# sourceMappingURL=style.css.map */

.footer_form_msg {
    margin-top: 10px;
    font-size: 14px;
}

.footer_form_msg.error {
    color: #ff4d4d;
}

.footer_form_msg.success {
    color: #28a745;
}

/* Character counter styling */
.char_counter {
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: right;
    margin-top: 4px;
    margin-right: 4px;
}

/* red text when exceeded */
.char_counter.exceeded {
    color: red;
    font-weight: 600;
}

/* textarea red border when exceeded */
.footer_textarea.exceeded {
    border: 1px solid red !important;
}

/* ===== FORM SUBMIT LOADER ===== */
.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* white transparent */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.form-loader img {
  width: 140px;
  max-width: 60%;
}

/* Active state */
.form-loader.active {
  opacity: 1;
  visibility: visible;
}

/* Freeze background scroll */
body.freeze {
  overflow: hidden;
}
