/*=============comman-css======================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Root Variables ===== */
:root {
  --primary-color: #0d6efd;
  --secondary:#087864;
  --dark: #0b2c6b;
  --light: #f3f5f9;
  --text: #444;
  --transition: all 0.3s ease;
}

/* ===== Body ===== */
body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  padding-top:65px;
}
/*=======================header-css=================================*/
.main-header{
background:var(--light);
box-shadow:0 4px 20px rgba(0,0,0,.08);
z-index:9999;
}
.nav-link{
font-weight:600;
color:var(--dark);
}
li.nav-item {
    padding: 0px 8px;
}
.mega-dropdown{
position:static;
}
.mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 30px;
    display: none;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    border-radius: 40px;
}
.mega-menu h6 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}
.mega-menu a {
    color: var(--secondary);
    font-size: 16px;
    text-decoration: none;
    padding-bottom: 10px;
    display:block;
}
.mega-menu a:hover{
  color: var(--primary-color);
}
.info-box {
    background:linear-gradient(225deg, #FAF7EF 0%, #F4F6FC 100%);
    padding: 25px;
    border-radius: 10px;
}
.col-md-6.info-box h5 {
    font-size: 28px;
    color: var(--dark);
}
.col-md-6.info-box p {
    color:var(--dark);
    font-size: 16px;
}
.simple-dropdown{
position:relative;
}
.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(225deg, #FAF7EF 0%, #F4F6FC 100%);
    padding: 15px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 10px;
    z-index: 9999;
}
.dropdown-menu-custom a {
    color: var(--secondary);
    text-decoration: none;
    display: block;
}
.navbar .nav-link{
  position: relative;
  font-weight: 600;
  color:var(--dark);
}

.navbar .nav-link::after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg,#0d6efd,#1aa3ff);
  transition: .3s;
}

.navbar .nav-link:hover::after{
  width: 100%;
}

.navbar .nav-link:hover{
  color:var(--primary-color);
}
.header-btns{
  display: flex;
  gap: 0.5rem;
}
@media(max-width:767px){
.header-btns{
  display: block;
  gap: 0;
}
.header-btns .btn-8 {
    display: block;
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
}
}
@media(max-width:1199px){
  li.nav-item {
    padding: 0px 2px;
    font-size: 13px;
}
.navbar .nav-link{
  font-weight: normal;
}
}
/*=========================end-header-css===================*/
/* 12 */
/* ===== BUTTON RESET ===== */
.btn-12 {
    position: relative;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    max-width: 200px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    perspective: 230px;
    padding: 12px 70px;
    width: 100%;
}
.btn-12:focus,
.btn-12:active{
  outline: none;
  box-shadow: none;
}
/* ===== INNER SPANS ===== */
.btn-12 span{
  position: absolute;
  inset: 0;
  display: block;
  text-align: center;
  font-weight: 600;
  color: var(--light);
  border-radius: 6px;
  background: linear-gradient(0deg, rgb(0,172,238) 0%, rgb(2,126,251) 100%);
  box-shadow:
    inset 2px 2px 2px rgba(255,255,255,.4),
    4px 6px 15px rgba(0,0,0,.15);
  transform-origin: 50% 50% -20px;
  transition: transform .35s ease, box-shadow .35s ease;
  backface-visibility: hidden;
}
/* ===== FRONT SIDE ===== */
.btn-12 span:nth-child(2){
  transform: rotateX(0deg);
}
/* ===== BACK SIDE ===== */
.btn-12 span:nth-child(1){
  transform: rotateX(90deg);
}
/* ===== HOVER EFFECT ===== */
.btn-12:hover span:nth-child(2){
  transform: rotateX(-90deg);
}
.btn-12:hover span:nth-child(1){
  transform: rotateX(0deg);
}
@media (max-width:767px){
  a.btn-12 {
    display: block;
    width: 100%;
    max-width: 100%;
}
}
/*============btn-8==================*/
.btn-8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    color: var(--secondary);
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    line-height: 40px;
}
/* Text Layer */
.btn-8 span {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  white-space: nowrap;         /* text bahar nahi jayega */
}
/* Hover Fill Effect */
.btn-8::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}
.btn-8:hover::before {
  transform: translateX(0);
}
.btn-8:hover span {
  color: var(--light);
}
.btn-8:hover {
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}
/* Click Effect */
.btn-8:active {
  transform: scale(0.96);
}
@media (max-width:767px){
   .btn-8 {
    display: block;
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
}
}
/*====================================hero-section===================================*/
.hero {
  background: var(--light);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #03846d;
    color: var(--light);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom:15px;
}
.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2b5a;
  margin-bottom: 20px;
}
.hero-title span {
  color: #10a650;
}
.static-text {
  color: #1f2b5a;
  font-weight: 700;
}
.typed-text {
  color: #10a650;
  font-weight: 700;
  border-right: 2px solid #10a650;
  padding-right: 5px;
}
.hero-desc {
  font-size: 17px;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}
.hero-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
}

@media (max-width:1199px) {
  .hero-title{
    font-size: 30px;
  }
}
@media (max-width: 991px) {

  .hero-btns {
    justify-content: center;
  }
  .hero-image img {
    margin: 40px auto 0;
  }
  .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 767px){
.hero-title {
    font-size: 25px;
}
 .hero-btns .btn-8{
  display: none;
 }
}
.hero-layer {
  position: relative;
  overflow: hidden;
  background: var(--light);
}
.hero-layer::before {
    content: "";
    position: absolute;
    top: -25%;
    left: -20%;
    width: 85%;
    height: 320%;
    background: #c0e0c1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
    opacity: 0.9;
}
.hero-layer::after {
    content: "";
    position: absolute;
    bottom: -25%;
    right: -20%;
    width: 95%;
    height: 355%;
    background: #00a1f1;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    z-index: 0;
    opacity: 0.85;
}
.hero-layer > * {
  position: relative;
  z-index: 1;
}
.hero-layer::before,
.hero-layer::after {
  opacity: 0.9;
}
@media(max-width:1199px){
.hero-layer::after {
    bottom: -55%;
    right: -10%;
    width: 100%;
    height: 180%;

}
.hero-layer::before {
    top: -5%;
    left: 0%;
    width: 100%;
    height: 290%;
}
.hero-desc {
    font-size: 14px;
}
}
@media(max-width:767px){
    .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/*==========================about-section-css======================*/
.about-section{
  background-color: #fff;
}
.about-info {
    background: linear-gradient(135deg, #2e6fa9, #01866b);
    border-radius: 20px;
    color: var(--light);
}
.about-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.about-badge {
  display: inline-block;
  background: var(--dark);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 20px;
}
.about-top h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 0;
}
.about-top p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
.integration-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--light);
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.about-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.about-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.about-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}
.about-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width:1199px){
  .about-card h3 {
    font-size: 22px;
}
}
@media (max-width: 992px) {
  .about-top {
    grid-template-columns: 1fr;
  }

  .about-top h2 {
    font-size: 34px;
  }
}
@media (max-width:767px){
    .about-cards {
    grid-template-columns: 1fr;
  }
}
/*=============================end-css=========================*/
.wb-section {
    background: var(--light);
    padding: 80px 0;
}

.feature-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.feature-head h2 {
  font-size: 34px;
  color: var(--dark);
}
.feature-head p {
  color: #4d5a7c;
  max-width: 420px;
}
.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    transition: 0.35s;
}
.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-size: 20px;
  color:var(--dark);
  margin-bottom: 10px;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
/* Owl dots clean */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background-color: var(--secondary);
}
.owl-theme .owl-dots .owl-dot span{
  background-color: var(--primary-color);
}
@media (max-width:1199px){
  .feature-head{
    margin-bottom: 10px;
  }
}
@media (max-width:991px){

  .feature-head h2 {
    font-size: 22px;
}
.feature-head p {
    max-width: 350px;
    font-size: 13px;
}
}
/*============================power-sec-css=============================*/
.industries-section {
    background: linear-gradient(135deg, #018ff6, #008169);
    color: #fff;
}
.industries-title {
  font-size: 36px;
  font-weight: 700;
}
.industries-subtitle {
  opacity: 0.85;
}
/* Card */
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
/* Image */
.industry-img-wrap {
  position: relative;
  overflow: hidden;
}
.industry-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img {
  transform: scale(1.06);
}
/* Overlay */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.35s ease;
}
.industry-card:hover .industry-overlay {
  background: rgba(0, 0, 0, 0.28);
}
/* Label */
.industry-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: var(--dark);
    padding: 13px 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.industry-label a {
    color: var(--dark);
}
.industry-label a:hover{
  text-decoration: none;
}
/* Arrow animation */
.label-arrow {
  transform: translateX(25px);
  opacity: 0;
  transition: 0.35s ease;
}
.industry-card:hover .label-arrow {
  transform: translateX(0);
  opacity: 1;
}
/* Owl dots */
.industries-carousel .owl-dots {
  margin-top: 30px;
}
/*=====================================end-section=============================*/
/*=======================================whatsapp-requirments-section==========*/
.wa-requirements {
  background:var(--light);
}

/* Title */
.wa-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
}

.wa-subtitle {
  color: #5b678a;
  max-width: 850px;
  margin: 12px auto 0;
  font-size: 16px;
}
.req-image img {
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    margin-top: 30px;
}
@media(max-width:767px){
  .wa-title{
    font-size: 28px;
  }
}
/*====================================end-section======================*/
/*============trusrt-brand-css=================================*/
.trusted-brands {
    background: #fff;
}
.trusted-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 45px;
}
.brands-carousel .brand-item {
    background: #f3f5f9;
    border-radius: 14px;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}


/* Mobile */
@media (max-width: 576px) {
  .trusted-title {
    font-size: 20px;
  }
}

/*============================end-section=========================*/
/*=====================================power-section=================================*/
/* SAFETY */
body { overflow-x: hidden; }

.power-section {
    background:var(--light);
    overflow: hidden;
}
.power-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}
/* LEFT IMAGE */
.power-left img {
  width: 100%;
  max-width: 520px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.power-right {
    max-width: 450px;
    padding: 40px;
    background-color: #c0e0c1;
    margin: auto;
    min-height: 510px;
}
.power-tag {
    color:var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 28px;
}
.power-right h3 {
    font-size: 24px;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 12px;
    word-break: break-word;
    font-weight: 600;
}
span.power-tag h6 {
    color: #000;
}
.power-right p {
  color: #555;
  line-height: 1.7;
  word-break: break-word;
}
.power-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: #024b16; 
}
.slash-icon {
  display: inline-flex;
  gap: 6px;
}
.slash-icon::before,
.slash-icon::after {
  content: "";
  width: 5px;
  height: 24px;
  background:#024b16;
  transform: skew(-20deg);
  border-radius: 2px;
}
.power-carousel .owl-dots {
  margin-top: 30px;
  text-align: left;
}
@media(max-width:1199px){
  .power-right {
    max-width: 400px;
    min-height: 375px;
}
}
@media (max-width:991px){
  .power-right h3 {
    font-size: 18px;
}
  .power-right h6 {
    font-size: 14px;
}
.power-right p{
  font-size: 12px;
}
.power-right {
    max-width: 300px;
    min-height: 300px;
    padding: 24px;
}
}
@media (max-width: 767px) {
  .power-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .power-left img {
    margin: 0 auto 30px;
  }

  .power-carousel .owl-dots {
    text-align: center;
  }
}
/*============================end-sec-css===============================*/
/*============================ Integrations-sec-css=======================*/
.integrations-section {
  background: var(--light);
}
.integration-badge {
    display: inline-block;
    background: var(--dark);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.integration-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  max-width: 850px;
  margin: 0 auto;
}
.integration-card {
  background: #fff;
  height: 90px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.integration-card img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  transition: 0.35s ease;
}
.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.integration-card:hover img {
  transform: scale(1.05);
}
/* Responsive text */
@media (max-width: 767px) {
  .integration-title {
    font-size: 26px;
  }
  .integration-card {
    height: 80px;
  }
}

/*=============================End-sec-css================================*/
/*=============================book demo & form section===============*/
.demo-section {
    background: linear-gradient(135deg, #018ff6, #008169);
}
.demo-points li {
  margin-bottom: 8px;
}
span.badge {
background-color: var(--secondary);
}
.demo-form-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.demo-form-card .form-control,
.demo-form-card .form-select {
  font-size: 14px;
}
.contact-info p {
  margin-bottom: 5px;
  opacity: 0.9;
}
button.book-demo {
    background: linear-gradient(0deg, rgb(0,172,238) 0%, rgb(2,126,251) 100%);
    box-shadow: inset 2px 2px 2px rgba(255,255,255,.4),    4px 6px 15px rgba(0,0,0,.15);
}
@media (max-width: 767px) {
  .demo-section {
    text-align: center;
  }
}
/*========================end- book-demo-form-css===================*/
/*=========================blog-section==============================*/
.blog-section-premium {
  background: var(--light);
}

/* Headings */
.blog-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
}

.blog-subtitle {
  font-size: 16px;
  color: #64748b;
}

/* Card */
.blog-card-premium {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.blog-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

/* Image */
.blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0),
    rgba(0,0,0,0.35)
  );
  opacity: 0;
  transition: 0.4s ease;
}

.blog-card-premium:hover img {
  transform: scale(1.06);
}

.blog-card-premium:hover .blog-img-overlay {
  opacity: 1;
}

/* Body */
.blog-body {
  padding: 22px;
}

.blog-body h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-body h4 a {
  color: #12236a;
  text-decoration: none;
  transition: 0.3s;
}

.blog-body h4 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.blog-body p {
  font-size: 15px;
  color: #5b677d;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Footer */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6b7280;
}

.blog-read {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: 0.3s;
}

.blog-card-premium:hover .blog-read {
  transform: translateX(5px);
}
/*======================end-blog-section====================*/
/*==================footer-css============================*/
.site-footer {
  background: #fff;
  padding-top: 60px;
  border-top: 1px solid #e5e7eb;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-text,
.footer-time {
  font-size: 14px;
  color: #475569;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--dark);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Newsletter */
.newsletter-box {
  display: flex;
  border-bottom: 1px solid var(--dark);
}

.newsletter-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 6px 4px;
}

.newsletter-box button {
  border: none;
  background: none;
  color: var(--dark);
  font-size: 18px;
}
.footer-social {
  margin-top: 15px;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: var(--dark);
  transition: 0.3s;
}
.footer-social a:hover {
  background: var(--dark);
  color: #fff;
}
/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid #e5e7eb;
}
.footer-bottom p {
    font-size: 10px;
    color: #475569;
    text-align: center;
}
.footer-bottom p a{
  color: var(--dark);
}
@media(max-width:1199px){
  .footer-logo {
    max-width: 100px;
}
.footer-social a {
    width: 30px;
    height: 30px;
}
}
/* Toast */
.newsletter-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #79b872;
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 9999;
}

.newsletter-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.Download-app a img {
    max-width: 50px;
    padding-right: 10px;
}
.Download-app {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 20px;
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
  animation: pulseGlow 2.2s infinite ease-in-out;
}

/* Hover effect */
.Download-app:hover {
  transform: scale(1.06);
}

/* Glow animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.0);
  }
  50% {
    box-shadow: 
      0 0 15px rgba(37, 21, 158, 0.45),
      0 0 30px rgba(8, 45, 97, 0.25);
  }
  100% {
    box-shadow: 0 0 0 rgba(11, 25, 108, 0);
  }
}

.Download-app a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
/*=====================end-css=============*/
/*======================integrations-page-css-start=============*/
.service-banner-img figure img {
    max-width: 500px;
    width: 100%;
    margin: auto;
    text-align: center;
}
.service-banner-content.hero-title{
  font-size: 34px;
}
.service-banner-img img{
  max-width: 540px;
}
/* Card UI clean & screenshot style */
/* Masonry Layout */
.masonry {
  column-count: 4;
  column-gap: 25px;
}
@media (max-width: 1200px) {
  .masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .masonry { column-count: 2; }
}

@media (max-width: 576px) {
  .masonry { column-count: 1; }
}
/* Card Box */
.card-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7ef;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  transition: 0.35s ease;
}
.card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.integration-logo {
  height: 55px;
  object-fit: contain;
  margin-bottom: 12px;
}
.card-box h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color:var(--dark);
}
.card-box p {
  color: #546078;
  font-size: 14px;
}
/* TAB BUTTON STYLES */
.integration-tabs .nav-link {
    padding: 10px 10px;
    margin: 0 4px;
    border-radius: 10px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}
.integration-tabs .nav-link.active,
.integration-tabs .nav-link:hover {
  background:var(--dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(48, 86, 246, 0.4);
}

.tab-box { display: none; }
.tab-box.active { display: block; }
/* MOBILE: Tabs scrollable horizontally */
/* ---------- Desktop (LG+) = Center Tabs ---------- */
@media (min-width: 992px) {
    .integration-tabs {
        justify-content: center !important;
    }
}
/* ---------- Mobile + Tablet (Left Scroll) ---------- */
@media (max-width: 991px) {

    .integration-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 5px;
        scrollbar-width: none;
        scroll-behavior: smooth;
        justify-content: flex-start !important;
    }

    .integration-tabs::-webkit-scrollbar {
        display: none;
    }

    .integration-tabs .nav-item {
        flex: 0 0 auto;
        margin-right: 12px;
    }

    /* LEFT fade */
    .integration-tabs-wrapper::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 35px;
        background: linear-gradient(to right, white, transparent);
        pointer-events: none;
        z-index: 10;
    }
    /* RIGHT fade */
    .integration-tabs-wrapper::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 35px;
        background: linear-gradient(to left, white, transparent);
        pointer-events: none;
        z-index: 10;
    }
}
/*==============FAQ============================*/
/* FAQ WRAPPER */
.faq-wrapper {
    max-width: 1120px;
    margin: auto;
}
.faq-section{
  background-color: var(--light);
}
/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #e5e7f1;
    padding: 0;
}

/* QUESTION ROW */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark);
    transition: background 0.25s ease;
}
.faq-question:hover {
    background: #f5f7ff;
}
/* ICON (+) */
.faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* ANSWER AREA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(-6px);
    color: #4d5875;
    line-height: 1.6;
    transition:
        max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.35s ease,
        transform 0.35s ease,
        padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 16px;
}
/*==========================pricing-page==================*/
.pricing-section {
  background: linear-gradient(to bottom, #eef3ff, #ffffff);
}
.pricing-box {
  border-radius: 20px;
}
.small-btn {
  font-size: 14px;
  padding: 6px 14px;
  background: #e3ecff;
  color: var(--primary-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.highlight-text {
  background: var(--dark);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
}

.pricing-img {
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .pricing-box {
    text-align: center;
  }
  .small-btn {
    margin: auto;
  }
}
/*===========================end-section==================*/
/*===========================plan-section==================*/
.wa-pricing-section{
  background:linear-gradient(to bottom, #eef3ff, #ffffff);
  padding: 0 20px;
}

.Business-suite {
  background: #f5f8ff;
}
.pricing-title {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--dark);
}
.billing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.bill-label { color: #666; }
.bill-label.active { color: #007bff; font-weight: 600; }

.switch {
  width: 50px;
  height: 26px;
  position: relative;
}
.switch input { display: none; }
.slider {
  background: #cfd8ff;
  border-radius: 30px;
  position: absolute;
  inset: 0;
}
.slider::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: .3s;
}
.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.pricing-set {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.pricing-card {
  background: #eef2ff;
  padding: 24px;
  border-radius: 16px;
}
.pricing-card.featured {
  background: #e0f6e6;
  transform: scale(1.04);
}
.pricing-info {
    padding: 10px;
    background-color: #92dfff;
    border-radius: 10px;
}
.pricing-info h4 {
    font-weight: 700;
    color: #000;
    font-size: 22px;
}
.pricing-info p {
    color: #000;
    font-size: 13px;
    margin: 0;
}
.pricing-info h3 {
    font-weight: 600;
    color: var(--dark);
    font-size: 20px;
}
.feature-list {
  margin-top: 15px;
  padding-left: 18px;
  max-height: 240px;
}
.feature-list.expanded {
  max-height: none;
}
.feature-list li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--dark);
}
li.light-color {
    text-decoration: line-through;
    color: gray;
}
.toggle-features {
  display: none;
  margin-top: 10px;
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
}

.hidden { display: none; }

@media (max-width: 768px) {
  .pricing-set { grid-template-columns: 1fr; }
  .toggle-features { display: inline-block; }
  .feature-list{
  overflow: hidden;
}
}


/*=========================end-css====================*/

.addons-section {
  background: var(--light);
}

.addons-card {
  display: flex;
  border: 1px solid var(--secondary);
  border-radius: 14px;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
}

.addons-left {
  width: 35%;
  padding: 30px;
  border-right: 1px solid var(--secondary);
  text-align: center;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.billing-toggle span {
  color: #777;
}

.billing-toggle .active {
  font-weight: 600;
  color: var(--dark);
}

.price-box {
  padding: 20px;
  background-color: #047e69;
  border-radius: 50%;
  color: #fff;
  max-width: 160px;
  margin: auto;
  height: 160px;
}

.price-box h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
  padding-top: 24px;
}

.price-box p {
  font-size: 14px;
  line-height: 0;
}
section.addons-section h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
}
.addons-right h4 {
    color: var(--dark);
}
.btn-buy {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.switch {
  position: relative;
  width: 42px;
  height: 22px;
}

.switch input { opacity: 0; }

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 20px;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: var(--secondary);
}

input:checked + .slider::before {
  transform: translateX(20px);
}

.addons-right {
  width: 65%;
  padding: 30px;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 18px;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .addons-card {
    flex-direction: column;
  }
  .addons-left,
  .addons-right {
    width: 100%;
    border: none;
  }
  .features li {
    font-size: 14px;
}
}

/*=============end-section==============*/
.restaurant-whatsapp-cta {
    padding: 0 20px;
    background-color: #ffffff;
}

.restaurant-whatsapp-cta .cta-wrapper {
  background: #f2faf7;
  border-radius: 40px;
  padding: 60px;
}
.restaurant-whatsapp-cta .cta-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    max-width: 1050px;
    margin: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.restaurant-whatsapp-cta .cta-description {
  font-size: 16px;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 32px;
}
/*=====================================E-commerce-page===============*/
.cta-card h2 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
}
.cta-card strong{
  font-size: 20px;
  display: block;
  color: var(--secondary);
}
@media(max-width:1199px){
  .restaurant-whatsapp-cta .cta-wrapper{
    padding: 40px 30px;
  }
  .restaurant-whatsapp-cta .cta-description{
    font-size: 14px;
  }
}
/*===================================================affiliate-page-css============*/
/* ===== Affiliate Section ===== */
.affiliate-sec {
  background: var(--light);
}

/* Cards base style */
.affiliate-sec .bg-white {
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Soft gradient top line */
.affiliate-sec .bg-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  transition: width 0.4s ease;
}

/* Hover effect */
.affiliate-sec .bg-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

/* Top border animation on hover */
.affiliate-sec .bg-white:hover::before {
  width: 100%;
}

/* Heading hover color */
.affiliate-sec .bg-white h5 {
  transition: color 0.3s ease;
}

.affiliate-sec .bg-white:hover h5 {
  color:var(--secondary);
}

/* Text smoothness */
.affiliate-sec p {
  line-height: 1.6;
  font-size: 15px;
}

/* Section heading */
.affiliate-sec h2 {
  letter-spacing: -0.5px;
}
.affiliate-card h5 {
  color: var(--dark);
}
/* Mobile adjustments */
@media (max-width: 767px) {
  .affiliate-sec .bg-white {
    padding: 1.25rem !important;
  }
}
/*=========================end-page-css===============*/
/* ===== White Label Section ===== */
.wl-section {
  background:var(--light);
}

.wl-head h2 {
  font-weight: 700;
}

.wl-head p {
  max-width: 720px;
  margin: auto;
  color: #666;
}

/* Wrapper */
.wl-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* Center Line */
.wl-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

.wl-line span {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

.wl-line span:nth-child(1) { top: 8%; }
.wl-line span:nth-child(2) { top: 26%; }
.wl-line span:nth-child(3) { top: 44%; }
.wl-line span:nth-child(4) { top: 62%; }
.wl-line span:nth-child(5) { top: 80%; }

/* Rows */
.wl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
}

.wl-row.reverse {
  flex-direction: row-reverse;
}

/* Text */
.wl-text {
  width: 45%;
    padding: 10px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 10px 15px rgb(3 87 72);
}
.wl-text.right {
    text-align: left;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 10px 15px rgb(3 87 72);
}

.wl-text h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.wl-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Image */
.wl-image {
  width: 45%;
}

.wl-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===== MOBILE PERFECT ===== */
@media (max-width: 991px) {

  .wl-line {
    display: none;
  }

  .wl-row,
  .wl-row.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 45px;
  }

  .wl-text,
  .wl-image {
    width: 100%;
  }

  .wl-text {
    order: 2;
  }

  .wl-image {
    order: 1;
    margin-bottom: 12px;
  }

  .wl-text.right {
    text-align: center;
  }
}
/*====================end-sec================*/
.blog-detail-section {
  padding: 60px 0;
  background: #f6f8ff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.page-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
}

.hero-image-box {
  text-align: center;
  margin-bottom: 50px;
}

.hero-image-box img {
  max-width: 100%;
  border-radius: 18px;
}

.blog-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.blog-content h3 {
  font-size: 20px;
  margin-top: 30px;
  color: var(--dark);
}

.blog-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-top: 10px;
}

.conclusion {
  margin-top: 25px;
}

.share-post {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.share-post img {
  max-height: 36px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }

  .blog-content h2 {
    font-size: 20px;
  }

  .blog-content h3 {
    font-size: 18px;
  }
}
/*===============================end-sec=======================*/
/*==================testimonial-css=================*/
.txxt-testimonial-section {
  padding: 80px 0;
  background: #fff;
}

.txxt-testimonial-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
}

.txxt-testimonial-subtitle {
  text-align: center;
  margin-top: 10px;
  color: #6b7280;
  max-width: 650px;
  margin-inline: auto;
}

.txxt-testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  min-height: 220px;
  position: relative;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.txxt-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
}

.txxt-user {
  margin-top: 25px;
}

.txxt-user strong {
  display: block;
  color: var(--dark);
}

.txxt-user span {
  font-size: 14px;
  color: #6b7280;
}

.txxt-quote {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-size: 40px;
  color: #6d5cff;
  opacity: 0.8;
}

/* Owl dots custom */
.txxt-testimonial-carousel .owl-dots {
  margin-top: 30px;
}

.txxt-testimonial-carousel .owl-dot span {
  background: #d1d5db !important;
}

.txxt-testimonial-carousel .owl-dot.active span {
  background: var(--dark) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .txxt-testimonial-title {
    font-size: 28px;
  }
}

/*==============================end-secation======================*/
/*==============================folat-btn-css==================*/
/* Floating Button */
.wa-float-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

/* Chat Box */
.wa-chat-box {
    position: fixed;
    right: 90px;
    bottom: 20px;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Header */
.wa-header {
  background: #075e54;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header p {
  font-size: 12px;
  margin: 0;
}

.wa-close {
  cursor: pointer;
  font-size: 20px;
}

/* Body */
.wa-body {
  padding: 15px;
  background: #f0f2f5;
}

.wa-msg {
  background: #e4ffe8;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  width: fit-content;
}

/* Footer */
.wa-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

.wa-footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.wa-footer button {
  background: #25d366;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 575px) {
  .wa-chat-box {
    right: 10px;
    width: 90%;
  }
}

.call-float-btn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 52px;
  height: 52px;
  background: var(--primary-color); /* green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(22,163,74,0.4);
  animation: callPulse 1.8s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(22,163,74,0.6);
  color: #fff;
}

/* Pulse animation */
@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22,163,74,0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(22,163,74,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22,163,74,0);
  }
}

/* Mobile spacing */
@media (max-width: 575px) {
.call-float-btn {
    right: 26px;
    bottom: 85px;
    font-size: 20px;
}
}

/*===============================end-sec========================*/
/* ================================Cookie Policy Section================================ */
.txxt-cookie-policy {
  padding: 80px 0;
  background: #f5f7fb;
  font-family: "Inter", Arial, sans-serif;
}

.txxt-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 16px;
}

/* Page Title */
.txxt-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 35px;
}

/* Headings */
.txxt-cookie-policy h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 45px;
}

.txxt-cookie-policy h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 25px;
}

/* Paragraphs */
.txxt-cookie-policy p {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  margin-top: 14px;
}

/* Table wrapper */
.txxt-table-wrap {
  margin-top: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  overflow-x: auto;
}

/* Table */
.txxt-cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

/* Header */
.txxt-cookie-table thead th {
  background: #eef2ff;
  color: var(--dark);
  font-weight: 600;
  padding: 16px 18px;
  font-size: 15px;
  text-align: left;
}

/* Body cells */
.txxt-cookie-table tbody td {
  padding: 16px 18px;
  font-size: 14px;
  color: #374151;
  border-top: 1px solid #e5e7eb;
  vertical-align: top;
}

/* Zebra rows */
.txxt-cookie-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.txxt-cookie-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

/* Hover row effect */
.txxt-cookie-table tbody tr:hover {
  background: #eef1ff;
  transition: background 0.3s ease;
}

/* Links */
.txxt-cookie-policy a {
  color: #4f46e5;
  text-decoration: none;
  word-break: break-word;
}

.txxt-cookie-policy a:hover {
  text-decoration: underline;
}

/* Last line */
.txxt-last-line {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .txxt-title {
    font-size: 28px;
  }

  .txxt-cookie-policy h3 {
    font-size: 20px;
  }

  .txxt-cookie-policy h4 {
    font-size: 17px;
  }

  .txxt-cookie-table {
    min-width: 600px;
  }
}
