/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 50px;
  height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  font-weight: 400;
  transition: 0.5s;
  
}

.btn.btn-primary:hover {
  background: var(--bs-white) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  background: var(--bs-light) !important;
  color: var(--bs-primary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-light:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-light) !important;
}


.RotateMoveLeft {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
  0% {
    left: 0px;
  }

  50% {
    left: 40px;
  }

  100% {
    left: 0px;
  }
}

@keyframes RotateMoveRight {
  0% {
    right: 0px;
  }

  50% {
    right: 40px;
  }

  100% {
    right: 0px;
  }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-dark) !important;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: .5s;
  opacity: 1;
}



.collapse.navbar-collapse {
  transition: 0.5s;
}

@media (max-width: 992px) {
  nav.bg-transparent {
    position: absolute;
    width: 100%;
    background: transparent !important;
  }

  .navbar.navbar-expand-lg button span {
    position: relative;
    z-index: 99;
  }

  .navbar {
    position: relative;
    background: var(--bs-light);
    z-index: 2;
  }

  .rm {
    margin-left: 25%;
  }

  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white) !important;
    padding: 0 20px 20px 20px !important;
  }

  .sticky-top.navbar-light {
    background: transparent;
  }

  nav.navbar {
    padding: 0 30px 30px 0;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }


  .navbar-light .navbar-brand img {
    max-height: 45;
  }

  .hero-header {
    margin-top: -100px !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent !important;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
  }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 60px 0;
  margin-bottom: 6rem;
  transition: 0.5s;
}

.bg-breadcrumb::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
  z-index: 2;
}


@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 10%;
  }

  100% {
    bottom: 0px;
  }
}

.bg-breadcrumb::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.04);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    top: 0px;
  }

  50% {
    top: 10%;
  }

  100% {
    top: 0px;
  }
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding-top: 100px !important;
  }
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-dark) !important;
}


.breadcrumb-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.breadcrumb-animation li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(102, 16, 242, 0.07);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.breadcrumb-animation li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;

}


@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
.header::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--bs-light);
  border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
  animation: bgMove 5s linear infinite;
  z-index: -1;
}

@keyframes bgMove {
  0% {
    right: 0px;
  }

  50% {
    right: 20px;
  }

  100% {
    right: 0px;
  }
}

.header::before {
  content: "";
  position: absolute;
  bottom: -9%;
  left: -7%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 30px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveHeader 5s linear infinite;
  z-index: -1;

}

@keyframes RotateMoveHeader {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }


  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 9%;
  }

  100% {
    bottom: 0px;
  }
}

.hero-header {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-header::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 58px;
  height: 50px;
  background: url(../img/sty-1.png) center center no-repeat;
  animation: RotateMoveSty-3 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

}

@keyframes RotateMoveSty-3 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}

.hero-header::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  border: 30px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: RotateMoveSty-4 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

}

@keyframes RotateMoveSty-4 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}


.hero-header .rotate-img {
  position: absolute;
  top: 70px;
  left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 5px solid rgba(247, 71, 128, 0.1);
  background: transparent;
  animation: RotateMoveSty-2 45s linear infinite;
  transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
  0% {
    left: 0px;
  }

  40% {
    top: -30px;
  }

  50% {
    left: 500px;
  }

  70% {
    top: 200px;
  }

  80% {
    left: 100px;
  }

  95% {
    top: -30px;
  }

  100% {
    left: 0px;
  }
}

.hero-header .rotate-img img {
  position: relative;
  animation: RotateMove 30s linear infinite;
  z-index: -1;
}

@keyframes RotateMove {
  0% {
    left: 0px;
  }

  50% {
    left: 200px;
  }

  100% {
    left: 0px;
  }
}


@media (max-width: 992px) {
  .hero-header {
    padding-top: 280px;

  }

  .hero-header .rotate-img img {
    margin-top: 100px;
  }

}

/*** Hero Header End ***/


/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
  transition: 0.5s;
}

.service .service-item:hover {
  background: rgba(102, 16, 242, 0.09);
  border: 1px;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
  background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
  background: var(--bs-light);
  border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}

/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.price .price-item:hover {
  background: var(--bs-white) !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
  position: absolute;
  width: 200px;
  height: 110px;
  top: -45px;
  right: -80px;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transform: rotate(42deg);
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 10px;
}

/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  background: rgba(102, 16, 242, 0.2);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(102, 16, 242, 0.2);
  color: var(--bs-white) !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
  background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
  transform: scale(1.3);
}

/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
  position: relative;
  background: var(--bs-light);
  overflow: hidden;
  z-index: 1;
}

.testimonial::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-2.jpg) center center no-repeat;
  animation: TestimonialMoveLeft 100s linear infinite;
  z-index: -1;

}

.testimonial::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-3.jpg) center center no-repeat;
  animation: TestimonialMoveRight 100s linear infinite;
  z-index: -1;

}

@keyframes TestimonialMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

@keyframes TestimonialMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

.testimonial .testimonial-carousel.owl-carousel {
  position: relative;
  padding: 0 35px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  width: 70px;
  height: 70px;
  border-radius: 40px;
  border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
  .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial .testimonial-carousel.owl-carousel {
    padding: 0;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-prev {
    margin-top: -250px;
    margin-left: -15px;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-next {
    margin-top: -250px;
    margin-right: -15px;
  }
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveLeft 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveRight 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 900px;
}

.footer .footer-item a {
  line-height: 15px;
  color: var(--bs-dark);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 15px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}

/*** copyright end ***/



ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

ul li span {
  font-size: 20px;
  margin-right: 10px;
  display: inline-block;
}

.crm-attractive-section {
  padding: 20px 20px;
  background: #f4f9fc;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
  border-radius: 2%;
}

.crm-header h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.crm-header p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

.crm-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.crm-card {
  background: #d9dee4;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.crm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.crm-card h4 {
  font-size: 20px;
  color: #007BFF;
  margin-bottom: 12px;
}

.crm-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .crm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.email-features {
  padding: 70px 20px;
  
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
  color: #333;
  margin-top: -10%;
}

.feature-header h2 {
  font-size: 36px;
  color: #004080;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

.feature-header h3 {
  font-size: 22px;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.crm-pro-section {
  padding: 80px -2px;
  background: linear-gradient(120deg, #f0f8ff, #eaf6ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.crm-pro-header h2 {
  font-size: 36px;
  color: #002e5b;
  margin-bottom: 10px;
}

.crm-pro-header p {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #444;
}

.crm-pro-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: auto;
}

.crm-pro-card {
  background: linear-gradient(to bottom right, #ebd7d7, #e3e0f2);
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  text-align: left;

}

.crm-pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.crm-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007BFF, #00C8FF);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.crm-pro-card h4 {
  font-size: 20px;
  color: #004080;
  margin-bottom: 12px;
}

.crm-pro-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .crm-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .crm-pro-grid {
    grid-template-columns: repeat(4, 1fr);
    background-color: #f4f8fb;
  }
}

.crm-feature-metrics {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f9fbff, #eef6ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.feature-text h3 {
  font-size: 18px;
  color: #007BFF;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-text h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
}

.feature-text p {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.feature-metric-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.metric-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.metric-box:hover {
  transform: translateY(-8px);
}

.metric-box h3 {
  font-size: 36px;
  color: #007BFF;
  margin-bottom: 10px;
}

.metric-box p {
  font-size: 16px;
  color: #333;
}

.about-vision-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f0f7ff, #e6f2ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.vision-content {
  max-width: 900px;
  margin: auto;
}

.vision-content h3 {
  color: #007BFF;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vision-content h2 {
  font-size: 34px;
  color: #002e5b;
  margin-bottom: 20px;
}

.vision-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.vision-content strong {
  color: #007BFF;
}

.why-custo-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #eaf4ff, #eaf4ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
  border-radius: 2%;
  margin-top: 4%;
  padding-top: 5%;
}

.why-custo-header h2 {
  font-size: 34px;
  color: #002f5e;
  margin-bottom: 10px;
}

.why-custo-header p {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.6;
}

.why-custo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.custo-feature {
  background: #e7dbe4;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.custo-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.custo-icon {
  font-size: 32px;
  color: #007BFF;
  margin-bottom: 15px;
}

.custo-feature h4 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.custo-feature p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .why-custo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aboutus-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f3f9ff, #eaf4ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  text-align: center;
}

.aboutus-container {
  max-width: 900px;
  margin: 0 auto;
}

.aboutus-header h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 20px;
}

.aboutus-header p {
  font-size: 16px;
  color: #444;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.aboutus-body {
  margin-top: 30px;
}

.aboutus-body p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.about-custo {
  background: linear-gradient(to right, #f9fcff, #eaf4ff);
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.about-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-wrapper h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 25px;
}

.about-wrapper p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 47px;
}

.about-wrapper strong {
  color: #007BFF;
  font-weight: 600;
}

.how-it-works {
  padding: 80px 20px;
    
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.hiw-header h2 {
  font-size: 34px;
  color: #003366;
  margin-bottom: 10px;
}

.hiw-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hiw-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: auto;
}

.hiw-step {
  background: linear-gradient(to bottom right, #ebd7d7, #e3e0f2);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.hiw-icon {
  font-size: 32px;
  color: #007BFF;
  margin-bottom: 15px;
}

.hiw-step h4 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .hiw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-intro-section {
  background: linear-gradient(to bottom right, #f9fcff, #e6f2ff);
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.service-intro-content {
  max-width: 850px;
  margin: 0 auto;
}

.service-intro-content h2 {
  font-size: 36px;
  color: #002e5b;
  margin-bottom: 10px;
}



.service-intro-content h3 {
  font-size: 20px;
  color: #007BFF;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-intro-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.feature-cards {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f9fbff, #e6f2ff);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.feature-container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #e5f0eb;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 28px;
  color: #007BFF;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: #e7dbe4;
  
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.benefit-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.benefit-card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: linear-gradient(to right, #f5f9ff, #eaf4ff);
  color: #333;
}

.benefits-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.benefits-header h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 15px;
}

.benefits-header p {
  font-size: 16px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.benefit-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  padding: 0 15px;
  background-color: #e7dbe4;
}

@media (min-width: 768px) {
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefit-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #e7dbe4;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: rotateX(0) rotateY(0);
}

.benefit-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.benefit-card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: #002f5e;
  margin-bottom: 15px;
}

.benefit-card ul {
  list-style: none;
  padding-left: 0;
}

.benefit-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.benefit-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f9fc;
  color: #333;
}

.booking-features {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.title {
  font-size: 34px;
  color: #002b5e;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #dae9dd;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}


  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .icon {
    font-size: 32px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
  }

  .feature-card h4 {
    font-size: 18px;
    color: #002d5e;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }

  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f8fbfe;
    color: #333;
  }

  .feature-section {

    max-width: 1100px;
    margin: auto;
    text-align: center;
  }

  .section-title {
    font-size: 32px;
    color: #002b5e;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  .card-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  @media (min-width: 768px) {
    .card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .card-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .feature-card {
    background: #dae9dd;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .icon {
    font-size: 36px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
  }

  .feature-card h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }

  .head {

    color: #00319a;
  }

  .hp {

    color: #8d0732;

  }

  .img2 {
    width: 85% !important;
    margin-top: 5%;
    height: 28rem;
  }

  .about {
    color: #002b88 !important;
    font-weight: bolder;
  }

  ab-1 {
    margin-top: -13%;
  }

  .more {
    width: 127px;
    padding: 0px;
    height: 37px;
    align-items: center;
    display: flex;
    margin-left: 22%;
    margin-top: 6%;

    justify-content: center;
  }

  .ser1 {
    background-color: #eef4f8;
  }


  .mr {
    width: 127px;
    padding: 0px;
    height: 37px;
    align-items: center;
    display: flex;

    margin-left: 91%;
    margin-top: 3%;
    justify-content: center;
  }

  .mr2 {
        width: 116px;
    padding-top: 1%;
    height: 35px;
    align-items: center;
    display: flex;
    margin-left: 200%;
    margin-top: -2%;
    justify-content: center;
  }

  .img-fluid {
    max-width: 95%
  }

  .ab-us {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f4f8fc;
    color: #333;
  }

  .footer {
    background: #002b5e;
    color: #ffffff;
    padding: 60px 20px;
  }

  .footer-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: 1fr;
  }

  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .footer-box h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
  }

  .footer-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #cce3ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #ffffff;
  }

  .nav {
    margin-left: -1%;
  }

  .pt {

    margin-top: -13%;
  }

  .solution {

    padding: 31px 20px;
    background-color: #eaf4ff;
    text-align: center;
    margin-bottom: 15%;
    margin-top: 3%;
    padding-top: 1%;
    border-radius: 2%;
  }

  .cd2 {

    background-color: #f1e6ee;
  }

  .what {

    color: #24ba71;
  }

  /* General Footer Styling */
  .footer {
    background-color: #111;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer h5 {
    color: #fff;
    font-weight: 600;
  }

  .footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    text-align: left;
  }

  .footer a:hover {
    color: #ffc107;
  }

  /* Footer Social Buttons */
  .btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
  }

  .btn-social:hover {
    background-color: #ffc107;
    color: #000;
    border-color: #ffc107;
  }

  /* Grid Layout for Footer */
  .grd-ftct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  /* Optional Margin Helper Class */
  .mrg-ctnm {
    margin-bottom: 30px;
  }

  /* Optional Width Control */
  .grd-wdct {
    min-width: 250px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }

  .footer-links a i {
    font-size: 14px;
    margin-right: 8px;
    color: #ffc107;
    /* Flash Yellow */
  }

  .footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
  }

  .pricing-section {
    padding: 18px 20px;
    text-align: center;
    color: #333;
  }

  .pricing-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .pricing-header p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .pricing-card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .starter {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
  }

  .professional {
    background: linear-gradient(135deg, #f2994a, #f2c94c);
  }

  .enterprise {
    background: linear-gradient(135deg, #9b51e0, #bb6bd9);
  }

  .pricing-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
  }

  .price {
    font-size: 34px;
    margin: 15px 0;
    font-weight: bold;
    color: #fff;
  }

  .plan-subtext {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
  }

  ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
  }

  ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
 
  }

  ul li i {
    margin-right: 10px;
    color: #ffd700;
  }

  .btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #fff;
    transition: background 0.3s, color 0.3s;
  }

  .btn-glass:hover {
    background: #fff;
    color: #333;
  }

  .badge {
    background: #fff3cd;
    color: #856404;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
  }

 body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f8fb;
  margin: 0;
}

.pricing-section {
  padding: 60px 20px;
  text-align: center;
}

.pricing-header h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 24px;
  color: #2c3e50;
}

.price {
  font-size: 32px;
  color: #007bff;
  font-weight: bold;
  margin: 10px 0;
}

.price span {
  font-size: 14px;
  color: #777;
}

.subtext {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
}

ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

ul li i {
  color: #007bff;
  margin-right: 10px;
}

.btn-request {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-request:hover {
  background: #0056b3;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffd43b;
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.starter {
  border-top: 4px solid #007bff;
}

.professional {
  border-top: 4px solid #f39c12;
}

.enterprise {
  border-top: 4px solid #8e44ad;
}
.c-1{

  margin-top: 15%;
  
}
.ft-1{
  
margin-top: -8rem;
    margin-bottom: -7 rem;

}
.benefit-card:nth-child(1) {
  background-color: #e7dbe4; /* Business Owners */
}
.benefit-card:nth-child(2) {
  background-color: #e7dbe4; /* Sales & Ops */
}
.benefit-card:nth-child(3) {
  background-color: #e7dbe4; /* Customers & Vendors */
}

.pp-1{

  background-color: #e8e2fb;
}
.ar2{width: 121px;
    padding: 0px;
    height: 33px;
    align-items: center;
    display: flex;
    margin-left: 89%;
    margin-top: -2%;
    justify-content: center;}


    .str{

      border-top: 4px solid #ff0045;
    }
    


    @media (max-width: 480px){

.ds-none{
  display: none !important;
}
.mrct-lftt{
  margin-left: 30% !important;
}

.mrct-rgt{
  margin-right: 0 !important;
}
    }