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

/*  
font-family: "Poppins", sans-serif;
  */
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  color: #fff;
  font-weight: 400;
}
p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  font-weight: 400;
}
.darkColor {
  color: #1d1e20 !important;
}
.darkColorbg {
  background-color: #439ff4 !important;
}
.text-green {
  color: #439ff4;
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#fluid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*=========================================  
          HOME PAGE CSS START HERE 
  ============================================*/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 99999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/* HEADER CSS START HERE */
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
}
.dropdown-item:hover {
  background-color: #0b64b7;
  color: #fff;
}
/* Open dropdown on hover for larger screens */
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* Align dropdown with parent */
  }
}
.bottom-header {
  background-color: #fff;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  /* overflow: hidden; */
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: #1d1e20;
  margin: 0;
}
/* .bottom-header nav .navbar-nav .nav-item
  {
    padding: 0px 20px;
  } */
.bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
  transform: scale(1);
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #1d1e20;
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  /* text-transform: uppercase; */
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}
.header-btn a {
  padding: 15px 30px 15px 30px;
  margin-left: 20px;
  font-weight: 500;
  border-color: #439ff4;
  background-color: #439ff4;
  text-transform: capitalize;
  line-height: 1;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-btn a:hover {
  border-color: #0b64b7;
  background-color: #0b64b7;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* Banner section start here */
.banner {
  background-image: url(https://pulsesocial.ai/wp-content/uploads/2025/06/banner.jpg);
  background-color: #ffffff;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7em 0em 4em 0em;
  position: relative;
  display: block;
}
.video-banner {
  position: relative;
  width: 100%;
  height: 750px; /* Full viewport height */
  overflow: hidden;
}
.video-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000007c;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}
.bannerContent {
  top: 40px;
}
.form-control {
  color: #1d1e20;
}
.bannerform {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(4.5px);
  /* border: 5px solid #1d1e20; */
}
.freeCall-btn {
  background-color: #0b64b7;
  border-color: #0b64b7;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 15px;
}
.freeCall-btn:hover {
  background-color: #439ff4;
  border-color: #439ff4;
}
.freeFormCall-btn {
  background-color: #0b64b7;
  border-color: #0b64b7;
  color: #fff;
  border-radius: 10px;
}
.freeFormCall-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0b64b7;
}
.banner-text h1
{
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.banner-text P{
  font-size: 18px;
}
.banner-text .banner-call-btn
{
  background: #fff;
    color: #0b64b7;
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    margin-bottom: 45px;
  text-transform: uppercase;
}
.banner-socialIcon li a
{
  font-size: 28px;
  color: #fff;
}
.banner-socialIcon li a:hover
{
  color: #0b64b7;
}
.banner-imageNew img{
  animation: jumpFour 3s linear infinite;
}
@keyframes jumpFour {
  0% {
    transform: translateZ(0);
}
50% {
    transform: translate3d(0, -20px, 0);
}
100% {
    transform: translateZ(0);
}
}
/* Aout Section */
.aboutSection {
  background-image: url(https://pulsesocial.ai/wp-content/uploads/2025/06/creative-tropical-frame-of-palm-and-monstera-leaves-on-white.jpg);
}
.aboutSection::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    #ffffffcc 0%,
    #ffffff 75%
  );
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: 0;
}
.about-one__image {
  position: relative;
  z-index: 2;
  padding-right: 48px;
  padding-bottom: 90px;
}
.about-one__smimage {
  position: absolute;
  width: 80%;
  height: 100%;
  bottom: 0;
  left: -50px;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 240px 200px 0 0;
}
.about-one__smimage img{
  animation: tptranslateX2 4s infinite alternate forwards;
}
@keyframes tptranslateX2 {
  0% {
    transform: translateX(-20px);
}
100% {
    transform: translateX(20px);
}
}
.about-one__content {
  position: relative;
  z-index: 1;
}
.sec-title span {
  font-size: 14px;
  color: #439ff4;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 500;
}
.sec-title h3 {
  /* color: #0b64b7; */
  color: #1d1e20;
  font-size: 33px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.about-one__content p {
  color: #1d1e20;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}
.iconboxs {
  border-bottom: 1px solid #439ff488;
}
.about-one__content a{
  padding: 13px 30px 13px 30px;
  font-weight: 500;
  background-color: #439ff4;
  text-transform: capitalize;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid #439ff4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tabs Section Start Here */
ul#myTab {
  border: 1px solid #fff;
  border-radius: 100px;
  display: inline-flex;
}
.nav-pills .nav-link {
  border-radius: 50px;
  padding: 10px 20px;
  margin: 9px;
  background-color: #f1f1f1;
  color: #333;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0px 5px #ffffff12, 0 0px 5px #ffffff24;
}
.nav-pills .nav-link.active {
  background-color: #439ff4;
  color: #fff;
}
.nav-pills .nav-link:hover {
  background-color: #439ff4;
  color: #fff;
}

/* Service Section Start Here */
.serviceBox {
  height: 375px;
  perspective: 1000px;
  transform-style: preserve-3d;
  border-radius: 15px;

  margin: 30px 20px;
}
.servicesFront,
.servicesBack {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out;
  border-radius: 20px;
}
.servicesFront {
  /* background-color: #F5FBFB; */
  background-color: #0b64b7;
  transform: none;
  z-index: 1;
}
.servicesFront img {
  width: 85px !important;
}
.servicesBack {
  /* background-color: #e1eff0; */
  background-color: #439ff4;
  transform: rotateX(0) rotateY(-180deg);
}
.servicesoverlay {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem; 
  transform: translateZ(0.1px);
  transform-style: preserve-3d;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.servicesoverlay img {
  filter: brightness(5);
}
.serviceBox h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
.serviceBox p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.serviceBox a {
  color: #0b64b7;
  background-color: #fff;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #439ff4;
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.serviceBox a:hover {
  color: #fff;
  background-color: #0b64b7;
  border-color: #0b64b7;
}
.serviceBox:hover .servicesFront {
  transform: rotateX(0) rotateY(180deg);
  transform-style: preserve-3d;
}
.serviceBox:hover .servicesBack {
  transform: none;
  transform-style: preserve-3d;
}

/* Why Choose Us Section Section */
.videoSection {
  background-color: #1d1e20;

  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 1;
}
.whyChooseImage {
  background-image: url(https://pulsesocial.ai/wp-content/uploads/2025/06/marketing.jpg);
  border-radius: 20px;
  height: auto;
}
.videoBox {
  position: relative;
  width: 100%;
  height: 600px; /* Full viewport height */
  overflow: hidden;
}
.iconbg {
  background: #fff;
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.letsBox a{
  padding: 15px 30px 15px 30px;
    margin-left: 20px;
    font-weight: 500;
    border-color: #fff;
    background-color: #fff;
    text-transform: capitalize;
    line-height: 1;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid;
    color: #439ff4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Section Start Here */
.td-single-testimonial-item {
  background: #f4f4f0;
  padding: 30px;
  transition: 0.8s;
  border-radius: 20px;
  /* height: 365px; */
}
.td-testimonial-header .td-testimonial-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  margin-right: 25px;
  position: relative;
  border-radius: 50%;
  background-color: #439ff4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.td-testimonial-icon {
  background-color: #439ff4;
  position: absolute;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 23px;
  text-align: center;
  line-height: 38px;
  top: 0;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.td-testimonial-icon img {
  width: 23px !important;
}
.td-name-designation h6 {
  font-size: 20px;
  margin-bottom: 3px;
  font-weight: 400;
  color: #1d1e20;
  transition: 0.3s;
}
.td-name-designation p {
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: #439ff4;
}
.td-testimonial-description {
  margin: 33px 0 027px 0;
}
.td-testimonial-description p {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #1d1e20;
  margin-bottom: 1rem;
}
.td-testimonial-rating ul li i {
  color: #1d1e20;
  font-size: 15px;
  margin: 0 2px;
}
.td-testimonial-image h2 {
  margin-bottom: 0;
  font-weight: 500;
}
.owl-stage .active.center .td-single-testimonial-item {
  background: #439ff4;
  transition: 0.3s;
}
.owl-stage .active.center .td-testimonial-description p {
  color: #fff;
  transition: 0.3s;
}
.owl-stage .active.center .td-name-designation h6 {
  color: #fff;
  transition: 0.3s;
}
.owl-stage .active.center .td-name-designation p {
  color: #fff;
  transition: 0.3s;
}
.owl-stage .active.center .td-testimonial-rating ul li i {
  color: #ffffff;
}
.owl-stage .active.center .td-testimonial-header .td-testimonial-image {
  background-color: #fff;
}
.owl-stage .active.center .td-testimonial-header .td-testimonial-image h2 {
  color: #439ff4;
}
.testi-btn a{
  background: #0b64b7;
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    margin-bottom: 45px;
    text-transform: uppercase;
}


/* How It Work Section Start Here */
.workBox {
  background-color: #439ff4;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  /* margin: 10px 10px 10px 10px; */
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 3em 1em 3em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.workBox img {
  filter: brightness(5);
}
.workBox h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 21px 7px 21px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  width: auto;
  max-width: 100%;
  position: absolute;
  top: -14px;
  color: #0b64b7;
}
.workBox h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}
.workBox p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}
.workBox a {
  color: #0b64b7;
  background-color: #fff;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #507882;
  border-radius: 10px;
  font-size: 13px;
  padding: 10px 20px;
}
.workBox a:hover {
  color: #fff;
  background-color: #0b64b7;
  border-color: #0b64b7;
}

/* Lets Boxs */
.letsBox{
  border-radius: 20px;
  padding: 100px 80px;
}
.letsBox a{
  padding: 15px 30px 15px 30px;
    margin-left: 20px;
    font-weight: 500;
    border-color: #fff;
    background-color: #fff;
    text-transform: capitalize;
    line-height: 1;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid;
    color: #439ff4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Boxes Content Start Here */
.boxes-content h2 {
  font-size: 35px;
  color: #3546a2;
  margin-bottom: 40px;
  font-weight: 700;
}
.boxes-content p {
  color: #1d1e20;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 18px;
}
.boxes-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
/* .content-box p
{
  font-weight: 700;
} */
.content-box h5 {
  color: #0b64b7;
}
.iconbg {
  background: #fff;
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Section Start Here */
footer {
  /* padding: 5em 0 0 0; */
  /* background-color: #0b64b7; */
  background-color: #1d1e20;
  color: #fff;
  /* background: rgb(102, 203, 210);
    background: linear-gradient(90deg, rgba(0, 167, 158, 0.5) 0%, rgba(241, 90, 34, 0.5) 100%); */
}
.footer-box h2 {
  font-weight: 900;
  font-size: 30px;
  color: #eeedec;
  margin-bottom: 17px;
  color: #fff;
  text-transform: capitalize;
}
.footer-box p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #fff;
}
.footer-box h3 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}
.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  font-size: 15px;
  color: #fff;
}
.footer-box ul li a:hover {
  color: #fff;
  letter-spacing: 1px;
}
.footer-btn a {
  padding: 15px 25px 15px 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  display: inline-block;
  background-color: #439ff4;
  text-transform: capitalize;
  line-height: 1;
  border-radius: 0px;
  font-size: 15px;
  border: 1px solid #439ff4;
}
.footer-btn a:hover {
  background-color: #1d1e20;
  border-color: #1d1e20;
  color: #ffffff;
}
.footer1stRow {
  padding: 5rem 0 1.5rem 0;
}

.socialmediaicon ul li a i {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: #1d1e20;
  transition: 0.3s;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: #439ff4;
  color: #fff;
}
.SocialIcon h3 {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}
.copyRight {
  border-top: 1px solid #ffffff5b;
  padding: 20px 0;
  color: #fff;
}

/* Social Media */
.social {
  position: fixed;
  top: 26%;
  z-index: 1;
  pointer-events: none;
}
.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-215px);
}
.social ul li {
  display: block;
  margin: 6px;
  background-color: #0b64b7;
  width: 265px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
  pointer-events: auto;
  border: 2px solid white;
}
.social ul li a {
  color: white;
  text-decoration: none;
}
.social ul li i {
  text-align: center;
  margin-left: 14px;
  /* color: black; */
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transform: rotate(0deg);
  color: #0b64b7;
}
.social ul li:hover {
  transform: translatex(100px);
  background-color: #439ff4;
}
.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
  color: #439ff4;
}
/* Phone Icon */
.osc-rotation {
  box-sizing: border-box;
  animation: oscillation-rotation 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}
.phone {
  position: fixed;
  left: 10px;
  top: 90%;
  z-index: 9999;
}
.phone h5 {
  color: white;
  background: #0b64b7;
  padding: 8px 14px;
  border-radius: 100%;
  border: 2px solid white;
}
@keyframes oscillation-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
/* Whatsapp Icon */
.whatsapp {
  position: fixed;
  left: 10px;
  top: 80%;
  z-index: 9999;
}
.animatePulse {
  animation: animatePulse 0.5s infinite alternate;
}
.whatsapp h5 {
  color: white;
  background: #0b64b7;
  padding: 8px 12px;
  border-radius: 100%;
  border: 2px solid white;
}
@keyframes animatePulse {
  0% {
    transform: scale(1.1);
}
100% {
    transform: scale(1.0);
}
}


/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
/* Hero Banner Section Start here */
.heroSection
{ 
  position: relative;
  z-index: 1;
}
.services-item {
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #0b64b7;
  border-radius: 15px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.185);
  transition: all ease 0.3s;
  position: relative;
  z-index: 85;
  background-color: #0b64b7;
  padding: 40px 20px 40px 30px;
  position: relative;
}
.services-item:hover {
  transform: translateY(-10px);
  background-color: #439ff4;
  transition: all ease 0.3s;
}
.services-item:hover .services-content h3
{
  color: #fff;
  transition: all ease 0.3s;
}
.services-item:hover .services-content p
{
  color: #fff;
  transition: all ease 0.3s;
}
.services-content {
  padding: 20px 0px 0px 0px;
}
.services-content h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: var(--s-primary);
  margin: 0px 0px 11px 0px;
  text-transform: capitalize;
}
.services-content p {
  margin: 0;
}
.services-content a {
  color: #0b64b7;
  background-color: #fff;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #439ff4;
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.services-content a:hover{
  background-color: #0b64b7;
  color: #fff !important;
}
.services-item:hover .services-content a
{
  color: #439ff4;
}



/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-color: #000000;
  background-image: url(https://pulsesocial.ai/wp-content/uploads/2025/06/about-images.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPagesBanner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #439ff45e;
}
.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.innerpage-title h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 78px;
  position: relative;
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin: 0 5px;
}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin-right: 5px;
}
/* Our Team Section Start here */
/* .ourTeam
{
  background-color: #f5fbfb;
} */
.td-single-team-member {
  margin-bottom: 30px;
  display: inline-block;
  transition: 0.3s;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.td-member-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  transition: 0.3s;
}
.td-member-image img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.social-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  transition: 0.3s;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  background-color: #439ff4;
  transition: 0.3s;
}
.social-icon ul li {
  margin: 0 5px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-icon ul li a i {
  font-size: 16px;
  color: #439ff4;
  transition: 0.3s;
}
.social-icon ul li:hover a i {
  color: #1d1e20;
}
.td-member-content {
  background: #0b64b7;
  padding: 20px;
  margin-top: -10px;
  transition: 0.3s;
}
.td-member-content h3 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #fff;
  transition: 0.3s;
}
.td-member-content h5 {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
}
.td-member-image a img {
  transform: scale(1);
  transition: 0.3s;
}
.td-single-team-member:hover .td-member-image a img {
  transform: scale(1.1);
  transition: 0.3s;
}
.td-single-team-member:hover .social-icon {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Mission Section Start here */
.ourMission {
  background-color: #439ff4;
}
.valueBox {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 10px 10px 10px 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 3em 1.5em 3em 1.5em;
  background-color: #0b64b7;
  border-radius: 20px;
}
.valueBox img {
  filter: brightness(5);
}
.valueBox h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 25px;
  margin-top: 25px;
  letter-spacing: 1px;
}
.valueBox p {
  color: #fff;
}
h2.accordion-header .accordion-button {
  font-weight: 700;
  color: #0b64b7;
  font-size: 22px;
}
.forsticky{
  position: sticky;
  top: 90px;
}
.allServicesList {
  background-color: #439ff4;
  border-radius: 15px;
  overflow: hidden;

}
.allServicesListHeader {
  padding: 18px 30px 18px 30px;
  background-color: #0b64b7;
}
.allServicesListBody {
  padding: 0px 30px 0px 30px;
  overflow-x: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
}
.innerServicesImages img {
  height: 430px;
  object-fit: cover;
  width: 100%;
}
img.about-one__bigimage {
  height: 450px;
  width: 100%;
  object-fit: cover;
}






/*========================================
     Blog Page CSS STart Here
========================================*/
/* .sec-pad {
  padding: 80px 0px;
} */
.image-box {
  position: relative;
}
.news-block-two .inner-box .image-box .post-date {
  position: absolute;
  left: 0px;
  bottom: -1px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 34px;
  text-align: center;
  padding: 3.5px 25px;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 0px 0px);
  background-color: #439ff4;
}
.sidebar-page-container .news-block-two .inner-box .lower-content {
  padding-top: 10px;
}
.post-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-block-two .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-right: 22px;
  margin-bottom: 20px;
}
.news-block-two .inner-box .lower-content .post-info li a {
  color: #fff;
  margin-left: 5px;
  font-size: 12px;
}
.news-block-two .inner-box .lower-content .post-info li i {
  font-size: 12px;
}
.inner-box {
  background: #0b64b7;
  padding: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.news-block-two .inner-box .lower-content h2 a {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.lower-content p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.lower-content .link a {
  color: #fff;
  background-color: #439ff4;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #439ff4;
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.lower-content .link a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #439ff4;
}
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  background-color: #0b64b7;
  color: #fff;
}
.page-link {
  color: #439ff4;
}
.page-link:hover {
  background-color: #439ff4;
  color: #fff;
}




/*=========================================  
      Pricing CSS START HERE 
============================================*/
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}
.list-group li {
  border: none;
}
.pricingBox-footer a {
  padding: 15px 30px 15px 30px;
  font-weight: 500;
  border-color: #439ff4;
  background-color: #439ff4;
  text-transform: capitalize;
  line-height: 1;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricingBox-footer a:hover {
  border-color: #0b64b7;
  background-color: #0b64b7;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


/*  */
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}
.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.plan-header {
  background: #007bff;
  color: white;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
.price-tag {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  padding: 0.5rem 0;
}



/* New */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 19%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 1rem;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background: #0b64b7;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.price {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 1rem 0 0.25rem;
  color: #fff;
}

.billed-note {
  font-size: 0.9rem;
  color: #fff;
}

.choose-btn {
  background-color: #0b64b7;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.choose-btn:hover {
  background-color: #439ff4;
  color: #fff;
}

.features {
  margin-top: 2rem;
}

.features h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

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

.features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: #555;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b64b7;
  font-weight: bold;
}


/*=========================================  
      Responsive CSS START HERE 
============================================*/
/* 991 Responsive Start Here */
@media (max-width: 991px) {
  .social{
    display: none;
  }
  .banner-text h1 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 25px;
  }
  .banner {
    padding: 4em 0em 2em 0em;
  }
  .banner-imageNew
  {
    display: none;
  }
  section {
    padding: 80px 0;
  }
  .bottom-header {
    background-color: #ffffff;
    position: relative;
  }
  .bottom-header nav .navbar-brand img {
    width: 150px !important;
  }
  .navbar-nav {
    align-items: flex-start !important;
    border-top: 1px solid #1616163d;
    margin-top: 15px;
  }
  .bottom-header nav .navbar-nav .nav-item .nav-link {
    margin: 5px 0px;
    display: inline-block;
  }
  .header-btn {
    display: none;
  }
  /* Banner */
  .video-banner {
    /* height: 400px; */
  }
  .bannerContent h5 {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .bannerContent h1 {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .bannerContent p {
    font-size: 13px;
    line-height: 25px;
    padding-right: 0px;
    margin-bottom: 20px;
  }
  .bannerContent a {
    padding: 13px 30px 13px 30px;
    font-size: 13px;
  }
  .bannerContent {
    top: 21px;
  }
  /* About Section */
  .about-one__image {
    padding: 0;
    margin-bottom: 30px;
  }
  .about-one__smimage{
    display: none;
  }
  .sec-title span {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .sec-title h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .about-one__content p {
    font-size: 15px;
  }
  .showcaseSection {
    padding-top: 3.8rem;
    padding-bottom: 4rem;
    padding-left: 15px;
    padding-right: 15px;
  }
  .titleHeading {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  /* .videoSection {
    background-image: linear-gradient(180deg, #fffefd 18%, #507882 0%);
  } */
  .videoBox {
    height: 300px;
  }
  /* .iconboxs ul li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } */
  /* .image-box {
    margin: 20px 0px !important;
  }
  .image-box img {
    width: 65px;
  } */
  .accordion-button {
    font-size: 15px;
    padding: 16px 0;
  }
  /* .contactIcon a {
    flex-direction: column;
  }
  .contactIcon > div {
    flex-direction: column;
  } */
  .td-single-testimonial-item {
    padding: 30px 18px;
  }
  .boxes-content h2 {
    font-size: 25px;
  }
  .boxes-content p {
    font-size: 14px;
  }

  /* Tabs */
  ul#myTab {
    width: 100%;
    display: -webkit-box;
    flex-wrap: nowrap;
    overflow: scroll;
  }

  /* About Page */
  .innerPagesBanner{
    height: 200px;
  }
  .innerpage-title h2 {
    font-size: 45px;
    line-height: 45px;
  }
  .news-image{
    display: none;
  }
  .forsticky {
    position: relative;
    top: 0px;
  }
}
