/**
* Template Name: OnePage
* Updated: Jan 29 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #32353a;
  --accent-color: #da6f29;
  --accent-hover: #009037;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #e84545; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e84545; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  color: #444444;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

h2{
  font-size: 30px;
  color: #000;
}

p{
  font-size: 16px;
  color: #000;
  line-height: 25px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #da6f29;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #009037;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
.signup-page #header {
  background-color: #fff;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
  background-color: #fff;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  color: #16507b;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar li li a{
  font-size: 14px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #da6f29;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #da6f29;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2487ce;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
}

#hero:before,
#hero-sub:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 80px;
}
#hero .why-us .container{
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

#hero h1 {
  margin: 0;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700;
  line-height: clamp(46px, 4.5vw, 72px);
  color: #124265;
}

#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.5px;
  display: inline-block;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  text-align: center;
}

.menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17pt;
  font-weight: 400;
  padding: 15px 25px;
  position: relative;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}

.SMN_effect-8 {
	position: relative;
	z-index: 1;
}

.SMN_effect-8 a {
	overflow: hidden;
	margin: 0px;
	padding: 0;
}

.SMN_effect-8 a span {
	display: block;
	padding: 10px 35px;
	background: #da6f29;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}

.SMN_effect-8 a:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	padding: 10px 20px;
	width: 100%;
	height: 100%;
	background: #009037;
	color: #fff;
	content: attr(data-hover);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: translateX(-25%);
}

.SMN_effect-8 a:hover span, .SMN_effect-8 a:focus span {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);
}

.SMN_effect-8 a:hover:before, .SMN_effect-8 a:focus:before {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}



#hero .icon-box {
  /*padding: 50px 30px;*/
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}


#hero-sub {
  width: 100%;
  height: auto;
  position: relative;
  /*background: url("../img/hero-bg.jpg") top center;*/
  background: url("../img/subpage-banner-bg.webp") top center;
  background-size: cover;
  height: auto;
  background-attachment: fixed;
}
#hero-sub .container {
  padding-top: 80px;
}
#hero-sub .why-us .container{
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}
#hero-sub .banner-left-cont {
  width: 100%;
  max-width: 640px;
}

#hero-sub h1 {
  margin: 0;
  font-size: clamp(32px, 3vw, 45px);
  font-weight: bold;
  line-height: clamp(42px, 3.5vw, 55px);
  margin-bottom: 15px;
  color: #124265;
}

#hero-sub p {
  color: #000;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 0;
}
#hero-sub p span {
  color: #da6f29;
  font-size: 20px;
}

#hero-sub .btn-get-started {
  font-weight: 500;
    font-size: 21px;
    letter-spacing: 0.5px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    text-align: center;
}


#hero-sub .icon-box {
  /*padding: 50px 30px;*/
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-right{
  margin-top: -70px;
  text-align: right;
}

.icon-boxes {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}

.why-us .content {
  padding: 30px;
  background: #da6f29;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #da6f29;
  background: #fff;
}
.why-us .service-home .more-btn i {
  font-size: 14px;
}

.why-us .service-home .more-btn:hover {
  color: #da6f29;
  background: #fff;
}
.why-us .content .more-btn:hover {
  color: #da6f29;
  background: #fff;
}

.why-us .service-home .more-btn {
  display: inline-block;
  background: rgba(218, 218, 218, 0.6);
  padding: 6px 26px 8px 26px;
  color: #da6f29;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 25px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #da6f29;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box .text-center i {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 0px;
  margin-top: 5px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}
.sprite-icons{
  position: relative;
}
.sprite-icons:before,
.service-icon span:before,
.workwith span:before,
.harness-box span:before,
.fbox-3 span:before,
.feature-box-icon span:before,
.signup-info span:before,
.work-structure span:before{
  content: '';
  background-image: url('../img/sprite-image.png');
  background-repeat: no-repeat;
}
.gloabl-msg:before{
  background-position: -35px -34px;
  width: 42px;
	height: 42px;
  margin: 0px auto;
}
.twoway-comm:before{
  background-position: -121px -36px;
  width: 42px;
	height: 42px;
  margin: 0px auto;
}
.dev-api:before{
  background-position: -215px -33px;
  width: 41px;
	height: 41px;
  margin: 0px auto;
}
.instant-messg:before{
  background-position: -35px -176px;
  width: 72px;
	height: 75px;
  display: block;
}
.two-way-messg:before{
  background-position: -157px -176px;
  width: 85px;
	height: 74px;
  display: block;
}
.auto-markt:before{
  background-position: -297px -176px;
  width: 71px;
	height: 74px;
  display: block;
}
.voice-broad:before{
  background-position: -423px -176px;
  width: 65px;
	height: 73px;
  display: block;
}
.virtual-numb:before{
  background-position: -526px -177px;
  width: 51px;
	height: 74px;
  display: block;
}
.devlp-api:before{
  background-position: -642px -176px;
  width: 71px;
	height: 75px;
  display: block;
}
.easy-inter:before{
  background-position: -62px -376px;
  width: 41px;
	height: 45px;
}
.mult-chan:before{
  background-position: -197px -378px;
  width: 36px;
	height: 39px;
}
.robust-web:before{
  background-position: -320px -379px;
  width: 47px;
	height: 38px;
}
.support-full:before{
  background-position: -455px -377px;
  width: 41px;
	height: 41px;
}
.harness-box span:before{
  display: inline-block;
  margin-bottom: 20px;
}
.robust-sms:before{
  background-position: -35px -450px;
  width: 45px;
	height: 56px;
}
.scalability:before{
  background-position: -97px -450px;
  width: 57px;
	height: 56px;
}
.enhan-analy:before{
  background-position: -171px -450px;
  width: 78px;
	height: 56px;
}
.fbox-3 span:before{
  display: inline-block;
  margin-bottom: 20px;
}
.sms-routing:before{
  background-position: -34px -534px;
  width: 91px;
	height: 46px;
}
.twoway-messg:before{
  background-position: -149px -534px;
  width: 67px;
	height: 46px;
}
.data-integ:before{
  background-position: -239px -534px;
  width: 47px;
	height: 45px;
}
.pay-as-you:before{
  background-position: -310px -534px;
  width: 53px;
	height: 47px;
}
.camp-sched:before{
  background-position: -396px -534px;
  width: 45px;
	height: 46px;
}
.multi-lingual:before{
  background-position: -474px -534px;
  width: 48px;
	height: 46px;
}
.pers-sms:before{
  background-position: -555px -534px;
  width: 59px;
	height: 45px;
}
.link-shortener:before{
  background-position: -647px -534px;
  width: 54px;
	height: 46px;
}
.persn-touch:before{
  background-position: -286px -450px;
  width: 44px;
	height: 57px;
}
.simple-setup:before{
  background-position: -377px -450px;
  width: 57px;
	height: 57px;
}
.robust-voice:before{
  background-position: -35px -616px;
  width: 49px;
	height: 47px;
}
.call-masking:before{
  background-position: -118px -616px;
  width: 47px;
	height: 47px;
}
.progressive-dialer:before{
  background-position: -198px -616px;
  width: 47px;
	height: 47px;
}
.click-to-call:before{
  background-position: -280px -616px;
  width: 51px;
	height: 47px;
}
.intell-agent:before{
  background-position: -363px -616px;
  width: 42px;
	height: 47px;
}
.call-record:before{
  background-position: -438px -616px;
  width: 46px;
	height: 46px;
}
.multi-currency:before{
  background-position: -518px -616px;
  width: 44px;
	height: 46px;
}
.enhan-analytics:before{
  background-position: -597px -617px;
  width: 65px;
	height: 46px;
}
.end-to-end-encrypt:before{
  background-position: -35px -705px;
  width: 42px;
	height: 47px;
}
.global-reach:before{
  background-position: -112px -705px;
  width: 46px;
	height: 46px;
}
.enhance-busins:before{
  background-position: -197px -705px;
  width: 43px;
	height: 45px;
}
.support-lang:before{
  background-position: -283px -705px;
  width: 48px;
	height: 47px;
}
.customer-interct:before{
  background-position: -370px -705px;
  width: 48px;
	height: 46px;
}
.customer-conver:before{
  background-position: -463px -705px;
  width: 45px;
	height: 45px;
}

.callus-icon:before{
  background-position: -35px -795px;
  width: 41px;
	height: 42px;
}
.chatus-icon:before{
  background-position: -110px -794px;
  width: 44px;
	height: 39px;
}
.visitus-icon:before{
  background-position: -189px -794px;
  width: 41px;
	height: 41px;
}
.signup-info span:before{
  width: 53px;
  height: 54px;
}
.sign-pay:before{
  background-position: -258px -793px;
}
.sign-quick:before{
  background-position: -340px -793px;
}
.sign-nosub:before{
  background-position: -420px -794px;
}



#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #da6f29;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
    padding-top: 80px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

.harness-sect {
  display: flex;
  margin-top: 70px;
}
.sms-comm h2,
.counts h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  text-align: center;  
}
.sms-comm p {
  font-size: 17px;
  color: #000;
  text-align: center;
}
.harness-box {
  width: 100%;
  max-width: 330px;
  text-align: center;
}
.harness-box h3 {
  font-size: 20px;
  font-weight: bold;
}
.harness-box p {
  font-size: 17px;
  color: #000;
  line-height: 30px;
}
.advanced-features,
.grey-bg{
  background-color: #f3f3f3;
}
.advanced-features h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}


.fbox-3 {
  position: relative;
  text-align: center;
  border: 1px solid #9c9c9c;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 35px 30px;
  margin-bottom: 50px;
  width: 100%;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.fbox-3 h5 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.fbox-3 p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-bottom: 0px;
}

.verify-sms{
  margin-bottom: 60px;
}

.verify {
  width: 100%;
  max-width: 1130px;
  margin: 0px auto;
}
.whatsapp-two-sect {
  width: 100%;
  max-width: 940px;
  margin: 0px auto;
}
.whatsapp-two-sect .right-image {
  text-align: left;
}
.whatsapp-two-sect .left-image {
  text-align: right;
}
.validate-otp-right p span {
  font-size: 18px;
  font-weight: bold;
  color: #da6f29;
}
.validate-otp-right h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
.validate-otp-right p {
  font-size: 17px;
  color: #000;
  line-height: 25px;
}
.validate-otp-right p:first-child{
  margin-bottom: 10px;
}
.validate-otp-right a {
  border: 1px solid #da6f29;
  color: #da6f29;
  font-size: 20px;
  font-weight: bold;
  padding: 13px 22px;
  margin-top: 20px;
  display: inline-block;
}
.validate-otp-right a:hover{
  background-color: #da6f29;
  color: #fff;
}
.flow-builder-img {
  padding-right: 40px;
  padding-left: 40px;
}
.app-calling{
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
section.integration {
  padding: 60px 0;
  background-color: #f1f1f2;
}
section.why-us {
  padding-bottom: 0;
}

.section-bg {
  background-color: #f8fbfe;
}


.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #060200;
}

.section-title p {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #da6f29;
}
.section-title p span {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  color: #da6f29;
}
.about-image-right img{
  width: 100%;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  /*content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;*/
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
section.about{
  background-color: #f1f1f2;
}
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background-color: #da6f29;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background-color: #009037;
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box span  {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
  margin-bottom: 60px;
}
.counts h2 {
  margin-bottom: 40px;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #da6f29;
  margin-left: 80px;
  margin: auto;
  font-family: "Roboto", sans-serif;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

/*--------------------------------------------------------------
# Home tab
--------------------------------------------------------------*/

.home-tab{
  padding-bottom: 150px;
}
.video-box {
  padding-top: 20px;
}
.home-tab h2{
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  padding-bottom: 0;
  color: #060200;
}

/* Code block styles for homepage tabs */
.code-block {
  background: #1e293b;
  color: #e2e8f0;
  padding: 28px 30px;
  border-radius: 0 0 12px 12px;
  font-size: 13.5px;
  line-height: 1.8;
  overflow-x: auto;
  margin: 0;
  font-family: 'Roboto Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  white-space: pre;
  text-align: left;
}
.code-block code {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  padding: 0;
}
.code-comment { color: #94a3b8; }
.code-keyword { color: #c084fc; }
.code-string { color: #86efac; }
.code-variable { color: #fbbf24; }
.code-url { color: #67e8f9; }
.code-function { color: #7dd3fc; }
.code-flag { color: #fb923c; }

/* Override default content-wrap styles for code tabs */
.home-tab .content-wrap section {
  padding: 0;
  text-align: left;
}
.home-tab .content-wrap section.content-current {
  background: transparent;
}

/* Modernize tab nav for code section */
.home-tab .tabs-style-topline nav {
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.home-tab .tabs-style-topline nav li {
  border: none;
}
.home-tab .tabs-style-topline nav li:not(:last-child) {
  border-right: none;
}
.home-tab .tabs-style-topline nav a {
  padding: 14px 10px;
  color: #94a3b8;
  transition: color 0.2s, background-color 0.2s;
}
.home-tab .tabs-style-topline nav a:hover,
.home-tab .tabs-style-topline nav a:focus {
  color: #e2e8f0;
  background: rgba(255,255,255,0.05);
}
.home-tab .tabs-style-topline nav a span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: inherit;
}
.home-tab .tabs-style-topline nav li.tab-current {
  border-bottom: none;
}
.home-tab .tabs-style-topline nav li.tab-current a {
  background: #1e293b;
  border-radius: 0;
  padding: 14px 10px;
  color: #fff;
}
.home-tab .tabs-style-topline nav li.tab-current a span {
  color: #fff;
}
.home-tab .tabs-style-topline .icon::before {
  display: none;
}

@media (max-width: 991px) {
  .code-block {
    font-size: 12px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }
  .home-tab .tabs-style-topline nav {
    border-radius: 8px 8px 0 0;
  }
  .home-tab .tabs-style-topline nav a {
    padding: 10px 4px;
  }
  .home-tab .tabs-style-topline nav a span {
    font-size: 10px;
    letter-spacing: 0;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #124265;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #da6f29;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}


.subpage-banner{
  background-color: #f3f3f3;
}

/*------------------Contact us----------------------------------*/

.contact-us #header,
.career #header {
  border-bottom: 1px solid #e6e6e6;
  background-color: #f7f7f7;
}
.section-banner {
  background-color: #f7f7f7;
  position: relative;
  padding-top: 7.9rem;
  padding-bottom: 1.5rem;
}
.section-banner .title-h1 {
  position: relative;
  z-index: 10;
  color: #000;
  font-weight: bold;
}
.breadcrumb {
  padding: .75rem 0 0rem 0;
  background-color: transparent;
  border-radius: 0;
}
.breadcrumb-item {
  position: relative;
}
.breadcrumb-item a {
  color: #000;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 39px;
  margin-left: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}

.breadcrumb-item.active {
  color: #757575;
}
.section-contact {
  padding-top: 4.5rem;
  padding-bottom: 0;
}
.before-title {
  color:#da6f29;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  position: relative;
}
.section-contact .title-h2 {
  margin-bottom: 2.07rem;
  font-weight: bold;
  color: #000;
}
.section-contact .after-title {
  max-width: 600px;
  margin: 0 auto;
}
.row-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 4.3rem;
  margin-right: -1.9rem;
  margin-left: -3.5rem;
}
.col-contact {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 1rem 1.9rem 1rem 3.5rem;
  border-right: 1px solid #e2e2e2;
}
.col-contact img {
  width: 51px;
  margin-bottom: 1.9rem;
}
.col-contact .title-h3 {
  margin-bottom: 0.9rem;
  font-size: 20px;
  font-weight: 700;
}
.col-contact__list {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  font-size: 1.21rem;
}
.col-contact__list-item {
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.col-contact__list-item span {
  font-weight: 600;
}
.col-contact:last-child {
  border-right: none;
  border-bottom: none;
}
.section-map iframe {
  width: 100%;
}
.iframe-map {
  height: 400px;
}
.section-form {
  padding-top: 3.5rem;
  padding-bottom: 8.64rem;
}
.section-form .title-h2 {
  margin-bottom: 2.07rem;
  font-size: 35px;
    color: #000;
    font-weight: bold;
}
.section-form .after-title {
  max-width: 600px;
  margin: 0 auto;
}

.section-form-career {
  padding-top: 3.5rem;
  padding-bottom: 8.64rem;
  overflow: visible;
}
.section-form-career .title-h2 {
  margin-bottom: 2.07rem;
  font-size: 28px;
    color: #000;
    font-weight: bold;
}
.section-form-career .after-title {
  margin: 0 auto;
}
.form-career p{
  text-align: center;
  color: #000;
}
.form-section {
  width: 100%;
  max-width: 1180px;
  margin: 0px auto;
}
.form-lef {
  padding-top: 60px;
}
.form-lef h2 {
  font-size: 30px;
  color: #000;
  font-weight: bold;
}
.form-lef p {
  color: #000;
  font-size: 17px;
  margin-bottom: 40px;
}
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 60px auto 0;
  max-width: 780px;
  background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.32);
    box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.32);
    padding: 50px 30px 30px 30px;
}
.response {
  width: calc(100% - 21px);
}
.form-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  max-width: calc(100% - 20px);
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.form-item.last {
  margin-bottom: 0;
}
.form-item .iti {
  display: block;
}
.form__input {
  width: 100%;
  background-color: #f7f7f7;
  padding: 1.1rem 1rem;
  height: 50px;
  border: none;
  border-right: 2px solid #f7f7f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form .w-100 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  max-width: calc(100% - 20px);
}
.form__textarea {
  width: 100%;
  background-color: #f7f7f7;
  padding: 1.1rem 1.5rem;
  border: none;
  min-height: 122px;
  border-right: 2px solid #f7f7f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form .btn {
  padding: 10px 30px;
}
.form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.form .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-color);
  cursor: pointer;
  flex-shrink: 0;
}
.form .form-check-label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}
.form .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
}
.form .form-check-label a:hover {
  color: var(--accent-hover);
}
.btn-primary {
  background-color: #da6f29;
    border-color: #da6f29;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: bold;
}
.btn-primary:hover{
  background-color: #009037;
  border-color: #009037;
}
.error-message{
  display: none;
  color: #da6f29;
    font-size: 14px;
    position: absolute;
}
.form-control.error,
.form__input.error {
  border-color: #da6f29;
}
.feature-box {
  display: flex;
  margin-bottom: 55px;
}
.feature-box .feature-box-icon.custom-feature-box-icon-size-1 {
  width: 3em;
  height: 3em;
  font-size: 20.8px;
  font-size: 1.3rem;
}
.feature-box .feature-box-icon {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    background: #da6f29;
    border-radius: 100%;
    font-size: 1rem;
    position: relative;
    text-align: center;
    padding: .8em;
    width: 68px;
    height: 68px;
}
.feature-box .feature-box-info {
  flex: 1 1 100%;
  padding-left: 15px;
}
.feature-box-icon span:before {
  transform: scale(.8);
}
.feature-box-icon span{
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box .feature-box-info h4 {
  font-size: 20px;
  font-weight: bold;
  color: #656464;
  margin-bottom: 5px;
}
.feature-box .feature-box-info p {
  margin-bottom: 0;
  font-size: 17px;
  color: #656464;
  font-family: "Roboto", sans-serif;
}
.feature-box .feature-box-info p span {
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-up svg.scroll-circle path {
  stroke: #e20935;
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}
.scroll-up svg path {
  fill: none;
}
.scroll-up::after {
  position: absolute;
  font-family: bootstrap-icons !important;
  content: "\f145";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: #e20935;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}


/*------------------Contact Us----------------------------------*/


/***************Sign Up css**********************************/

.signup-page #main {
  background-color: #f5f7fa;
}
.signup-page .footer-cta .getstart {
  display: none;
}
.signup-page .cta-text p br {
  display: none;
}
.signup-section {
  padding: 120px 0 80px;
  background-color: transparent;
}
.signup-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.signup-left {
  background-color: #124265;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.signup-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}
.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.signup-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.signup-benefit > i {
  font-size: 22px;
  color: #da6f29;
  flex-shrink: 0;
  margin-top: 2px;
}
.signup-benefit strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.signup-benefit span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.signup-right {
  padding: 48px 40px;
  position: relative;
}
.signup-right h2 {
  font-size: 26px;
  font-weight: 700;
  color: #124265;
  margin-bottom: 4px;
}
.signup-form-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 28px;
}
.signup-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.signup-form-item {
  margin-bottom: 20px;
}
.signup-form-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.signup-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background-color: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-input:focus {
  outline: none;
  border-color: #da6f29;
  box-shadow: 0 0 0 3px rgba(218, 111, 41, 0.1);
  background-color: #fff;
}
.signup-input::placeholder {
  color: #aaa;
}
.signup-multiselect {
  position: relative;
}
.signup-multiselect-toggle {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-multiselect-toggle:hover {
  border-color: #ccc;
}
.signup-multiselect-toggle.active {
  border-color: #da6f29;
  box-shadow: 0 0 0 3px rgba(218, 111, 41, 0.1);
  background-color: #fff;
}
.signup-multiselect-toggle.error {
  border-color: #dc3545;
}
.signup-multiselect-toggle i {
  font-size: 12px;
  color: #999;
  transition: transform 0.2s;
}
.signup-multiselect-toggle.active i {
  transform: rotate(180deg);
}
.signup-multiselect-placeholder {
  color: #aaa;
}
.signup-multiselect-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 8px 0;
}
.signup-multiselect-dropdown.open {
  display: block;
}
.signup-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.15s;
  margin-bottom: 0;
}
.signup-checkbox-item:hover {
  background-color: #f5f7fa;
}
.signup-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #da6f29;
  cursor: pointer;
  flex-shrink: 0;
}
.signup-checkbox-item span {
  font-weight: 400;
}
.btn-signup {
  width: 100%;
  height: 48px;
  background-color: #da6f29;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 4px;
}
.btn-signup:hover {
  background-color: #c45f1f;
}
.signup-terms {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}
.signup-terms a {
  color: #da6f29;
  text-decoration: none;
}
.signup-terms a:hover {
  text-decoration: underline;
}

/***************sign up css end ***************************/


/*--------------------------------------------------------------
# Careers
--------------------------------------------------------------*/
.work-structure {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  background-color: #fff;
  padding: 6px;
}
.work-structure:hover{
  -webkit-box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.20);
  box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.20);
}
.work-structure h3 {
  font-weight: bold;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  padding-top: 60px;
}
.career-details {
  margin-top: 50px;
}
.work-structure span:before{
  position: absolute;
  content: '';
  display: block;
  width: 56px;
  height: 48px;
  left: 0;
  right: 0;
  margin: 0px auto;
}
.team-works:before{
  background-position: -35px -889px;
}
.five-star-office:before{
  background-position: -111px -889px;
}
.flexible-hours:before{
  background-position: -187px -889px;
}
.sixdays-work:before{
  background-position: -263px -889px;
}
.free-voucher:before{
  background-position: -339px -889px;
}
.gadget-facilities:before{
  background-position: -415px -889px;
}
.best-culture:before{
  background-position: -491px -889px;
}
.great-salary:before{
  background-position: -567px -889px;
}
.career .form {
  box-shadow: none;
  max-width: 1100px;
  margin-top: 0;
  padding-top: 0;
}
.career .form h2{
  text-align: center;
  margin-bottom: 20px;
}
.career .form-item .dropdown { /*container for custom dropdown arrow*/
  -webkit-appearance: none;
  -moz-appearance: window;
  padding: 13px 50px 13px 16px;
  border: none;
  background-image: url("../img/select-down-arrow.png");
 background-repeat: no-repeat;
 background-position: right 20px center;
 background-color: #f7f7f7;
    width: 100%;
}
.file-input {
  display: inline-block;
  text-align: left;
  background: #f7f7f7;
  width: 100%;
  position: relative;
  height: 50px;
}

.file-input > [type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.file-input > .button {
  display: inline-block;
  cursor: pointer;
  background: #da6f29;
  color: #fff;
  padding: 12px 16px;
  border-radius: 2px;
  margin-right: 8px;
}

.file-input:hover > .button {
  background: #da6f29;
  color: white;
}

.file-input > .label {
  color: #333;
  white-space: nowrap;
  opacity: .3;
}

.file-input.-chosen > .label {
  opacity: 1;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq-left {
  padding-right: 20px;
}
.faq-left h2 {
  text-align: left;
}
.faq-left p {
  text-align: justify;
}
.faq-right {
  background-color: #fff;
  padding: 30px 20px;
  margin-top: -120px;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.20);
  -moz-box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.20);
  box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.20);
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 25px;
}

.faq .faq-list li {
  padding: 20px 0px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  -webkit-box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 6px 13px -3px rgba(0, 0, 0, 0.15);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 0 20px;
  outline: none;
  cursor: pointer;
  color: #000;
  font-weight: 600;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 30px;
    position: absolute;
    right: 15px;
    top: 0;
}
.faq-cont {
  padding-left: 20px;
  padding-right: 20px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #000;
  font-size: 16px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #da6f29;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/* ── FAQ Page Tabbed Layout ── */
.faq-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}
.faq-intro-text {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}
.faq-intro-text a {
  color: var(--accent-color);
  text-decoration: underline;
}
.faq-intro-text a:hover {
  color: var(--accent-hover);
}
.faq-tabs {
  max-width: 900px;
  margin: 0 auto;
}
.faq-tabs .nav-tabs {
  border-bottom: 2px solid #e8e8e8;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.faq-tabs .nav-tabs .nav-link {
  font-size: 15px;
  color: #555;
  font-weight: 600;
  background-color: transparent;
  padding: 10px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: rgba(218, 111, 41, 0.3);
}
.faq-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
  border-bottom-color: var(--accent-color);
}
.faq-tabs .nav-tabs .nav-link i {
  font-size: 18px;
}
.faq-tabs .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq-tabs .faq-list li + li {
  margin-top: 20px;
}
.faq-tabs .faq-list li {
  padding: 20px 0;
  background: #fff;
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.faq-tabs .faq-list li:hover {
  box-shadow: var(--shadow-md);
}
.faq-tabs .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 0 40px 0 20px;
  outline: none;
  cursor: pointer;
  color: #000;
  font-weight: 600;
}
.faq-tabs .faq-list a.collapsed {
  color: #343a40;
}
.faq-tabs .faq-list a.collapsed:hover {
  color: var(--accent-color);
}
.faq-tabs .faq-list .icon-show,
.faq-tabs .faq-list .icon-close {
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 0;
}
.faq-tabs .faq-list .icon-show {
  display: none;
}
.faq-tabs .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq-tabs .faq-list a.collapsed .icon-close {
  display: none;
}
.faq-tabs .faq-cont {
  padding: 0 20px;
}
.faq-tabs .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
}
.faq-tabs .faq-cont a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 500;
}
.faq-tabs .faq-cont a:hover {
  color: var(--accent-hover);
}

section.section.common {
  padding-top: 50px;
}
.common-page ul {
  padding-left: 0;
}
.common-page li{
  list-style-type: none;
    position: relative;
    padding-left: 21px;
    font-size: 16px;
    line-height: 33px;
}
.common-page li:before{
  content: '';
  position: absolute;
  background-image: url(../img/right-arrow.jpg);
  background-repeat: no-repeat;
  width: 10px;
  height: 18px;
  left: 0px;
  top: 7px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* Pricing Calculator */
.pricing {
  background: linear-gradient(135deg, #da6f29 0%, #c45d1a 100%);
  padding: 50px;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: var(--shadow-lg);
}
.pricing-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.pricing-left h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
}
.pricing-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
}
.pricing-left {
  display: none;
}
.pricing-left.active {
  display: flex;
}

/* Pricing Tabs */
.pricing .nav-tabs {
  border-bottom: none;
  gap: 4px;
}
.pricing .nav-tabs .nav-link {
  font-size: 15px;
  color: #555;
  font-weight: 600;
  background-color: #e8e8e8;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  border: none;
  transition: all 0.2s ease;
}
.pricing .nav-tabs .nav-link:hover {
  background-color: #f0f0f0;
  color: #333;
}
.pricing .nav-tabs .nav-link.active {
  color: #da6f29;
  background-color: #fff;
  border: none;
}
.pricing-right .card {
  background-color: transparent;
  box-shadow: none;
  border: none;
  max-width: 600px;
}
.pricing-right .tab-pane p {
  font-size: 17px;
  color: #333;
  font-weight: 600;
}
.pricing-right .tab-pane .form-item p {
  font-size: 13px;
  margin-bottom: 2px;
  color: #555;
  font-weight: 500;
}
.form-item-pricing .form-item {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
}
.pricing-right .tab-content {
  background-color: #fff !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.form-item-pricing .form-select {
  padding: 13px 15px;
  color: #000;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.form-item-pricing .form__input {
  background-color: #f8f9fc;
  border: 1px solid #e0e0e0;
  color: #000;
  border-radius: 8px;
}

/* Range slider accent */
.form-item-pricing .form-range::-webkit-slider-thumb {
  background: #da6f29;
}
.form-item-pricing .form-range::-moz-range-thumb {
  background: #da6f29;
}
.form-item-pricing .form-range::-webkit-slider-runnable-track {
  background: #e0e0e0;
}

/* Pricing result */
.pricing-right .tab-pane .pricing-result {
  margin-top: 15px;
}
.pricing-right .tab-pane .pricing-result p {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #da6f29 0%, #c45d1a 100%);
  padding: 12px 20px;
  border-radius: 10px;
  margin: 0;
}

/* Pricing tiers badges */
.pricing-tiers {
  display: flex;
  gap: 10px;
  padding: 12px 0 0;
  flex-wrap: wrap;
}
.pricing-tiers .tier {
  font-size: 12px;
  color: #666;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
}
.pricing-tiers .tier strong {
  color: #da6f29;
}

/* Service icons on tab panes */
.pri-sms,
.pri-rcs,
.pri-voice,
.pri-whatsapp {
  position: relative;
}
.pri-sms:before {
  position: absolute;
  content: '';
  background-image: url(../img/pricing-sms-right.png);
  background-repeat: no-repeat;
  display: block;
  width: 91px;
  height: 91px;
  right: -63px;
  top: -50px;
  transform: scale(0.8);
}
.pri-voice:before {
  position: absolute;
  content: '';
  background-image: url(../img/pricing-voice-right.png);
  background-repeat: no-repeat;
  display: block;
  width: 91px;
  height: 91px;
  right: -63px;
  top: -50px;
  transform: scale(0.8);
}
.pri-whatsapp:before {
  position: absolute;
  content: '';
  background-image: url(../img/pricing-whatsapp-right.png);
  background-repeat: no-repeat;
  display: block;
  width: 91px;
  height: 91px;
  right: -63px;
  top: -50px;
  transform: scale(0.8);
}

/* Feature cards */
.cmp-policy {
  margin-top: 60px;
}
.cmp-policy-detail {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  transition: all 0.25s ease;
  background: #fff;
}
.cmp-policy-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #da6f29;
}
.cmp-policy-detail i {
  font-size: 28px;
  color: #da6f29;
  margin-bottom: 12px;
  display: block;
}
.cmp-policy-detail h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cmp-policy-detail p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Payment methods */
.security {
  margin-top: 40px;
}
.security p {
  text-align: center;
  font-size: 18px;
  color: #444;
}
.secur-bank {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 45px;
}
.spring-securty {
  text-align: center;
}
.spring-securty img {
  margin-bottom: 16px;
  max-width: 80px;
}
.spring-securty h3 {
  font-weight: 600;
  font-size: 18px;
}
.security p.learnmore {
  font-size: 22px;
  font-weight: 500;
  padding-top: 40px;
}
.security p.learnmore a {
  color: #da6f29;
  text-decoration: underline;
  text-underline-offset: 3px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-cta {
  width: 100%;
  max-width: 920px;
  background-color: #da6f29;
  border-radius: 35px;
  padding: 30px 30px;
  display: flex;
  align-items: center;  
  -webkit-box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.51);
  -moz-box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.51);
  box-shadow: 0px 6px 13px -3px rgba(0,0,0,0.51);
  margin: 0px auto;
  margin-top: -120px;
  margin-bottom: 50px;
}
.cta-text {
  flex: 1;
}
.getstart {
  flex-shrink: 0;
}
.cta-text p {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 0;
}

.click-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  line-height: 35px;
  border-radius: 5px;
  text-align: center;
  padding: 8px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
  background-color: #fff;
}
.btn-style503 {
  color: #da6f29;
  transition: all 0.5s;
  &:hover {
    box-shadow: inset 5em 0 0 0 #009037, inset -5em 0 0 0 #009037;
    border-color: #dd7e2a;
    color: #fff;
  }
}

#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f3f3f3;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #da6f29;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #da6f29;
}
.footer-logo {
  margin-top: 60px;
}
.footer-logo img {
  filter: grayscale(100%);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #da6f29;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3194db;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #da6f29;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #009037;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  background: #e8e8e8;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}
#footer .footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

@media screen and (max-width: 767px) {

section{
  padding: 40px 0px;
}
#hero .container {
    padding-top: 20px;
}
#hero h1,
#hero-sub p{
  text-align: center;
}
#hero-sub p span{
  font-size: 16px;
}
.hero-right{
  margin-top: 30px;
}
#hero-sub h1{
  font-size: 28px;
  text-align: center;
  line-height: 40px;
}
.why-us .content h3,
.section-title h2,
.home-tab h2,
.sms-comm h2, 
.counts h2,
.advanced-features h2,
.validate-otp-right h2{
  font-size: 28px;
  text-align: center;
}
.home-tab h2{
  margin-bottom: 0;
}
.video-box {
  padding-top: 40px;
}
.signup{
  text-align: center;
}
.fbox-3{
  margin-bottom: 25px;
}
.validate-otp-right {
  text-align: center;
  padding-top: 0px;
}
.flow-builder-img {
  padding-right: 0;
  text-align: center;
}
.validate-otp-right h2 br {
  display: none;
}
.send-messg,
.flow-builder,
.app-calling,
.rich-media,
.notif-custm {
  flex-direction: column-reverse;
}
.send-messg .validate-otp-left,
.flow-builder .validate-otp-left,
.glob-virt .validate-otp-left,
.app-calling .validate-otp-left,
.rich-media .left-image,
.inter-buttn .right-image,
.notif-custm .left-image {
  margin-top: 40px;
}
.app-calling {
  margin-bottom: 20px;
}


.tabs nav a.icon span{
  display: block;
  font-weight: normal;
    font-size: 10px;
}
.footer-cta{
  flex-direction: column;
}
.getstart {
  margin-top: 30px;
}
.cta-text p,
.why-us .content p,
.section-title p,
.integration p,
.about .icon-box,
.about .content,
.whatsapp-two-sect .left-image,
.whatsapp-two-sect .right-image{
  text-align: center;
}
.section-banner {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
}
.section-form-career{
  padding-top: 2.5rem;
  padding-bottom: 5.64rem;
}
.breadcrumb {
  padding: 0;
  background-size: cover !important;
}
.section-contact {
  padding-bottom: 2rem;
}
.before-title {
  margin-bottom: 0.7rem;
}
.row-contact {
  margin-left: 0;
  margin-right: 0;
}
.col-contact:nth-child(2n + 1),
.col-contact:nth-child(2n) {
  border-right: none;
}
.col-contact {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
}
.col-contact__list {
  max-width: 280px;
  margin: 0 auto;
}
.iframe-map {
  height: 200px;
}
.section-form {
  padding-top: 2.9rem;
  padding-bottom: 6rem;
}
.before-title {
  margin-bottom: 0.7rem;
}
.form-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.form .w-100 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.footer-logo {
  margin-top: 40px;
}
.form-lef{
  text-align: center;
}
.form{
  margin-top: 10px;
  -webkit-box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.15);
    box-shadow: -1px 10px 18px 2px rgba(0, 0, 0, 0.15);
}
.signup-section {
  padding: 100px 0 60px;
}
.signup-left {
  padding: 36px 30px;
}
.signup-right {
  padding: 36px 30px;
}
.signup-form-grid {
  grid-template-columns: 1fr;
}
.pricing {
  padding: 24px;
  border-radius: 14px;
}
.pricing-left h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
.pricing-left p {
  font-size: 14px;
  line-height: 1.4;
}
.pricing-right .tab-pane p,
.security p {
  font-size: 15px;
  line-height: 22px;
}
.pricing .nav-tabs .nav-link {
  padding: 8px 12px;
  font-size: 13px;
}
.pricing .nav-tabs {
  gap: 2px;
}
.tab-pane:before {
  display: none;
}
.pricing-right .card {
  max-width: 100%;
}
.pricing-tiers {
  gap: 6px;
}
.pricing-tiers .tier {
  font-size: 11px;
  padding: 3px 8px;
}
.pricing-right .tab-pane .pricing-result p {
  font-size: 13px;
  padding: 10px 14px;
}
.secur-bank {
  margin-top: 35px;
}
.spring-securty {
  margin-bottom: 20px;
  border: 1px solid #e4e0e0;
  padding: 10px 0px;
  border-radius: 12px;
}
.cmp-policy-detail {
  padding: 20px 18px;
}
.cmp-policy-detail i {
  font-size: 24px;
}
.security p.learnmore {
  font-size: 18px;
}
.section-form-career .title-h2{
  margin-bottom: 1.07rem;
}
.work-structure{
  margin-bottom: 10px;
}
.career .form{
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  padding-bottom: 0px;
}
.career .form-item .dropdown{
  background-size: 5%;
}
.form .btn {
  padding: 0.6rem 2.2rem;
  font-size: 18px;
}
/* FAQ tabs mobile */
.faq-tabs .nav-tabs {
  gap: 2px;
}
.faq-tabs .nav-tabs .nav-link {
  font-size: 12px;
  padding: 8px 10px;
  gap: 4px;
}
.faq-tabs .nav-tabs .nav-link i {
  font-size: 14px;
}
.faq-tabs {
  max-width: 100%;
}
.faq-intro-text {
  font-size: 15px;
}


}

@media (min-width: 768px) and (max-width: 1023px) {

.banner-left-cont {
    text-align: center;
}
#hero-sub .banner-left-cont{
  max-width: 100%;
}
.hero-right {
  margin-top: 50px;
  text-align: center;
}
.why-us .content h3{
  text-align: center;
}
.integration .section-title,
.integration p {
  text-align: center;
}
.video-box {
  padding-top: 0;
}
.section-banner {
  padding-top: 5rem;
}
.breadcrumb {
  padding: 0;
  margin-bottom: 0px;
}
.section-contact {
  padding-bottom: 2rem;
}
.row-contact {
  margin-left: 0;
  margin-right: 0;
}
.col-contact {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 3rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
}
.col-contact:nth-child(2n) {
  border-right: none;
}
.col-contact:nth-child(3) {
  border-bottom: none;
}
.col-contact__list {
  max-width: 280px;
  margin: 0 auto;
}
.iframe-map {
  height: 400px;
}
.validate-otp-right h2 br,
.cta-text p br{
  display: none;
}
.signup-left {
  padding: 32px 24px;
}
.signup-right {
  padding: 32px 24px;
}
.signup-left h2 {
  font-size: 24px;
}
.pricing {
  padding: 36px;
  border-radius: 18px;
}
.pricing-left h2 {
  font-size: 36px;
}
.pricing-left p {
  font-size: 16px;
}
.pricing .nav-tabs .nav-link {
  padding: 9px 18px;
  font-size: 14px;
}
.security p {
  font-size: 16px;
}
.security p.learnmore,
.spring-securty h3 {
  font-size: 20px;
}
.spring-securty img {
  width: 35%;
}
.form .btn {
  padding: 0.6rem 2.2rem;
  font-size: 20px;
}
.section-form-career{
  padding-bottom: 3.64rem;
}
#footer .footer-newsletter{
  text-align: center;
}
.footer-logo {
  margin-top: 30px;
}
/* FAQ tabs tablet */
.faq-tabs .nav-tabs .nav-link {
  font-size: 13px;
  padding: 9px 14px;
}


}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {

#hero{
    height: auto;
    min-height: auto;
}
.col-contact {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 3rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
}
.col-contact:nth-child(2n) {
  border-right: none;
}
.col-contact:nth-child(3) {
  border-bottom: none;
}
.col-contact__list {
  max-width: 280px;
  margin: 0 auto;
}
/* FAQ tabs smaller laptop */
.faq-tabs .nav-tabs .nav-link {
  font-size: 14px;
  padding: 10px 18px;
}

}

/* Mac resolution range (1367px - 1600px) */
@media only screen and (min-width: 1367px) and (max-width: 1600px) {
  #hero {
    height: auto;
    min-height: 100vh;
  }

  #hero-sub .banner-left-cont {
    max-width: 620px;
  }

  .hero-right {
    margin-top: -20px;
  }

  .col-contact {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 3rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e2e2;
  }
  .col-contact:nth-child(2n) {
    border-right: none;
  }
  .col-contact:nth-child(3) {
    border-bottom: none;
  }
  .col-contact__list {
    max-width: 280px;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Skip to Content (Accessibility)
--------------------------------------------------------------*/
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 10px 20px;
  background: #124265;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Service Intro Summary
--------------------------------------------------------------*/
.section-intro {
  padding: 40px 0 0;
}
.section-intro .service-summary {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------------------------------
# Service Overview (split text + highlights)
--------------------------------------------------------------*/
.service-overview {
  padding: 60px 0;
}
.service-overview .overview-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}
.service-overview .overview-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.overview-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.overview-item:hover {
  background: #f8f9fa;
  border-left-color: var(--accent-color);
}
.overview-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(218, 111, 41, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overview-icon i {
  font-size: 20px;
  color: var(--accent-color);
}
.overview-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}
.overview-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-overview {
    padding: 40px 0;
  }
  .overview-highlights {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# CTA Buttons
--------------------------------------------------------------*/
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-cta {
  padding: 12px 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Hero Subtitle & Outline Button
--------------------------------------------------------------*/
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 15px 0 25px;
}
.btn-get-started.btn-outline {
  background: transparent;
  border: 2px solid #124265;
  color: #124265;
  margin-left: 15px;
}
.btn-get-started.btn-outline:hover {
  background: #fff;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Integration Section Heading
--------------------------------------------------------------*/
.integration .section-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #124265;
  margin-bottom: 10px;
}
.integration .section-title p,
.integration .section-title p span {
  color: #555;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Hero Code Block (API page)
--------------------------------------------------------------*/
.hero-code {
  background: #1e293b;
  color: #e2e8f0;
  padding: 28px 24px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 0;
  margin-right: auto;
  text-align: left;
  font-family: "Roboto Mono", "Courier New", monospace;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-code code {
  color: #e2e8f0;
  font-size: inherit;
}
@media (max-width: 991px) {
  .hero-code {
    margin-top: 30px;
    font-size: 12px;
    padding: 20px 16px;
  }
}

@media (max-width: 991px) {
  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }
  .btn-get-started.btn-outline {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Hide Footer CTA on specific pages
--------------------------------------------------------------*/
.page-registration .footer-cta,
.contact-us .footer-cta,
.career .footer-cta {
  display: none;
}

/*--------------------------------------------------------------
# Addon Integration Cards
--------------------------------------------------------------*/
.addon-box {
  position: relative;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 24px;
  margin-bottom: 30px;
  width: 100%;
  background: #fff;
  transition: all 300ms ease-in-out;
}
.addon-box:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.addon-box .addon-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
}
.addon-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.addon-box p {
  font-size: 15px;
  line-height: 24px;
  color: #555;
  margin-bottom: 0;
}
.addon-icon.bg-crm { background-color: #E67E22; }
.addon-icon.bg-erp { background-color: #E67E22; }
.addon-icon.bg-ecom { background-color: #E67E22; }
.addon-icon.bg-dev { background-color: #E67E22; }
