.page-title {
  color: #364d59;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  /* background-color: color-mix(in srgb, transparent 40%); */
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 26px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, white, transparent 20%);
}

.current {
  /* color: white; */
  color: #157a00;
}

.prve a {
  color: white;
}

.cont {
  bottom: 66px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: #157a00;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.active {
  color: #157a00;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/** Homepage 01 **/
.about-us-one-bg {
  background-image: url(../images/homepage-1/bg/about-bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 10% auto;
  position: relative;
}

.about-us-one-bg .pbmit-ihbox-content {
  padding: 45px 12px 12px 12px;
}

.about-us-one-bg .pbmit-ihbox-content p span {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--pbmit-blackish-color);
}

.about-us-one-leftbox {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-right: 50px;
}

.about-us-one-leftbox .pbmit-heading-subheading {
  width: 100%;
}

.about-us-one-leftbox .ihbox-style-area {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #008374;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.carousel {
  position: relative;
  width: 80%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
  display: none;
}

.carousel-images img.active {
  display: block;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background-color: transparent;
}

.call-to-action .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container .content {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: white;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--accent-color) 50%,
      color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, white, transparent 20%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid white;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid white;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid white;
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid white;
  color: white;
}

.call-to-action .cta-btn:hover {
  background: white;
  border: 2px solid white;
  color: black;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
  background-image: url("../images/bg/contact-bg-flower - Copy.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 10% auto;
  position: relative;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.plan-features {
  max-height: 230px;
  /* collapsed height */
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.plan-features.expanded {
  max-height: 1300px;
  /* expanded height */
}

.view-more-btn {
  display: block;
  text-align: center;
  margin: 15px auto 0;
  padding: 10px 15px;
  background: #008080;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
}

.view-more-btn:hover {
  background: #006666;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 5px 0;
  font-size: 15px;
}

.blink-text {
  cursor: pointer;
  color: #008080;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
  animation: glowPulse 2s infinite ease-in-out;
}

/* Hover effect */
.blink-text:hover {
  color: #ff6600;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.7), 0 0 20px rgba(255, 102, 0, 0.5);
  transform: scale(1.05);
}

/* Glowing pulse animation */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px rgba(0, 128, 128, 0.6), 0 0 10px rgba(0, 128, 128, 0.4);
    opacity: 0.8;
  }

  50% {
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.8),
      0 0 40px rgba(0, 128, 128, 0.6);
    opacity: 1;
  }

  100% {
    text-shadow: 0 0 5px rgba(0, 128, 128, 0.6), 0 0 10px rgba(0, 128, 128, 0.4);
    opacity: 0.8;
  }
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  /* height: 100%; */
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 29px;
  right: -35px;
  background-color: #157a00;
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #157a00;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: #157a00;
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: #157a00;
  color: white;
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-abt h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-abt .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about-abt .content ul {
  list-style: none;
  padding: 0;
}

.about-abt .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-abt .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about-abt .content p:last-child {
  margin-bottom: 0;
}

.about-abt .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.service-section-one {
  margin: 0px 50px 0px 50px;
  position: relative;
  background-image: url(../images/bg/masking-bg-2.png);
  background-repeat: no-repeat;
  background-color: var(--pbmit-secondary-color) !important;
  border-radius: 30px 30px 30px 30px;
}

.service-arrow,
.testimonial-arrow,
.team-arrow {
  margin-left: auto;
  position: absolute;
  right: 12px;
  display: flex;
  align-items: end;
  height: 45px;
  bottom: 10px;
}

.marquee-section-one {
  padding: 90px 0px 0px 0px;
}

.contact-us-section-one {
  overflow: hidden;
  padding: 0px 40px 0px 40px;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.animated.animated-slow {
  animation-duration: 2s;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.contact-us-section-one .contact-us-image {
  background-image: url(../images/img/contact-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px 15px 0px 0px;
  border-radius: 30px 30px 30px 30px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.contact-us-section-one .contact-us-bg {
  background-image: url(../images/homepage-1/bg/demo-1-contact-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--pbmit-global-color) !important;
  margin: 0px 0px 0px 15px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 15px;
  padding: 100px 160px 80px 100px;
  border-radius: 30px 30px 30px 30px;
}

.testimonial-section-one {
  background-image: url(../images/homepage-1/bg/contact-bg-flower.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 100px 0px 130px 0px;
}

.counter-area {
  border-top: 1px solid #e5e5e5;
  padding: 80px 0;
}

.video-section-bg {
  background-image: url(../images/homepage-1/bg/CTA-bg-image.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px 60px 0px 60px;
  --e-column-margin-right: 60px;
  --e-column-margin-left: 60px;
  padding: 240px 0px 180px 0px;
  border-radius: 30px 30px 30px 30px;
}

.video-section-bg .pbmit-heading .pbmit-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 74px;
  margin-bottom: 20px;
  color: var(--pbmit-white-color);
}

.video-section-bg .video-icon-wrapper {
  text-align: left;
  position: relative;
  z-index: 1;
}

.video-section-bg .video-icon-wrapper a {
  font-size: 55px;
  background-color: var(--pbmit-global-color);
  position: relative;
  border: 5px solid var(--pbmit-white-color);
  border-radius: 50%;
  padding: 0.5em;
  color: var(--pbmit-white-color);
  fill: var(--pbmit-white-color);
  display: inline-block;
  line-height: 1;
  transition: all 0.3s;
  text-align: center;
}

.video-section-bg .video-icon-wrapper a::before,
.video-section-bg .video-icon-wrapper a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 50%;
  border: 8px solid rgba(var(--pbmit-white-color-rgb), 0.2);
  z-index: -1;
}

.video-section-bg .video-icon-wrapper a::before {
  -webkit-animation: pulse-border-2 1.5s linear infinite;
  -moz-animation: pulse-border-2 1.5s linear infinite;
  -o-animation: pulse-border-2 1.5s linear infinite;
  animation: pulse-border-2 1.5s linear infinite;
}

.video-section-bg .video-icon-wrapper a::after {
  -webkit-animation: pulse-border 1s linear infinite;
  -moz-animation: pulse-border 1s linear infinite;
  -o-animation: pulse-border 1s linear infinite;
  animation: pulse-border 1s linear infinite;
}

@keyframes pulse-border-2 {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.7);
    -webkit-transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}

.video-section-bg .video-icon-wrapper a i {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  font-size: 25px;
}

.video-section-bg .video-icon-wrapper a i::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.video-section-bg .pbmit-widget {
  padding-left: 20px;
  position: relative;
}

.client-section-one {
  padding: 80px 0px 0px 0px;
}

/** Homepage 02 **/
.ihbox-section-two {
  padding: 30px 60px 0px 60px;
}

.service-two-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  margin: 0 5px !important;
  background-color: var(--pbmit-blackish-color);
}

.service-two-slider .swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--pbmit-global-color);
}

.marquee-section-two {
  padding: 20px 0px 070px 0px;
}

.about-us-section-two {
  margin: 0px 50px 0px 50px;
  position: relative;
  background-image: url(../images/homepage-1/service/service-bg.png);
  background-repeat: no-repeat;
  border-radius: 30px 30px 30px 30px;
  background-position: top center;
  background-size: cover;
}

.about-us-section-two .about-us-wrap {
  padding: 15px 30px 0px 40px;
}

.about-us-section-two .about-us-two-leftbox {
  position: relative;
}

.about-us-section-two .about-us-two-leftbox img {
  -webkit-mask-image: url(../images/homepage-2/bg/demo2-masking.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center left;
  -webkit-mask-repeat: no-repeat;
}

.about-us-two-leftbox .ihbox-style-area {
  position: absolute;
  left: 0%;
  width: auto;
  bottom: 0%;
  max-width: 100%;
}

.counter-section-two {
  border-bottom: 1px solid #e5e5e5;
  padding: 80px 0px 70px 0px;
}

.accordion-section-two {
  overflow: hidden;
  padding: 100px 0px 100px 0px;
}

.accordion-section-two .accordion-wrap {
  padding: 80px 0px 0px 0px;
}

.accordion-section-two .accordian-image {
  margin: 40px -340px 0px 0px;
}

.pricing-section-two {
  padding: 0px 50px 0px 50px;
}

.pricing-section-two .pricing-two-image {
  background-image: url(../images/homepage-2/bg/pricing-col-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px 25px 0px 0px;
  border-radius: 30px 30px 30px 30px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.pricing-section-two .pricing-two-bg {
  background-image: url(../images/homepage-2/bg/demo-2-col-ptl2.png);
  background-repeat: no-repeat;
  margin: 0px 0px 0px 15px;
  padding: 100px 80px 100px 100px;
  border-radius: 30px 30px 30px 30px;
}

.client-section-two {
  border-style: solid;
  border-width: 1px 0px 0px 0px;
  border-color: #e5e5e5;
  padding: 80px 0px 50px 0px;
}

.contact-us-two {
  background-image: url(../images/homepage-2/bg/mailchip-bg-img.jpg);
  padding: 120px 70px 120px 70px;
  border-radius: 30px 30px 30px 30px;
}

.contact-us-two .pbmit-heading-subheading .pbmit-title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
}

.contact-us-two form {
  padding-left: 50px;
}

.contact-us-two form .form-control {
  height: 80px;
  padding-right: 175px;
  padding-left: 30px;
  border-radius: 40px;
  border: 0;
  margin-bottom: 0;
}

.contact-us-two .pbmit-footer-newsletter {
  position: relative;
}

.contact-us-two .pbmit-footer-newsletter .pbmit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 18px 40px;
  border-radius: 40px;
  transition: all 0.4s ease-in;
}

/** Homepage 03 **/
.ihbox-three-bg {
  margin-top: -80px;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  border-radius: 30px;
  background-image: url(../images/homepage-3/bg/pattern.png);
}

.ihbox-three-center-img {
  mix-blend-mode: multiply;
}

.about-section-three {
  padding: 100px 0px 156px 0px;
}

.about-three-leftbox {
  padding: 50px 138px 0px 0px;
}

.about-three-imgbox {
  position: relative;
}

.about-three-img01 {
  text-align: right;
}

.about-three-img01 img,
.about-three-img02 img {
  border-radius: 30px;
}

.about-three-img02 {
  position: absolute;
  left: -6%;
  width: auto;
  bottom: -20%;
  max-width: 100%;
}

.service-section-three {
  padding: 0 40px;
}

.service-three-left-col {
  padding-right: 30px;
}

.service-three-left-inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  background-image: url(../images/homepage-3/bg/service-left-col-1.jpg);
}

.service-three-right-col {
  background-color: var(--pbmit-secondary-color);
  padding: 80px 85px 45px;
  position: relative;
  overflow: hidden;
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.testimonial-three-bg {
  padding: 150px 20px 80px 20px;
  background-image: url(../images/homepage-3/bg/testimonial-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.testimonial-three-bg .swiper-button-next,
.testimonial-three-bg .swiper-button-prev {
  position: absolute;
}

.testimonial-three-bg .swiper-button-next {
  left: auto;
  right: 0px;
}

.testimonial-three-bg .swiper-button-prev {
  left: 0px;
  right: auto;
}

.video-three-bg {
  padding: 240px 0px 180px 0px;
  margin: 0 60px;
  background-image: url(../images/homepage-3/bg/video-bg-image.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

/*------------------- ---------------------*/
/*01 - Inner Page 
/*----------------------------------------*/
/** 01 - About Us **/
.about-us .about-us-section-two {
  background-image: none;
}

.about-us .about-us-section-two .pbmit-btn-blackish:hover {
  background-color: var(--pbmit-secondary-color);
}

.team-slider-area {
  margin: 0 50px;
  background-image: url(../images/bg/masking-bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  border-radius: 30px;
}

.client-area {
  padding: 70px 0px 50px 0px;
  border-bottom: 1px solid #e5e5e5;
}

/** 02 - Our History **/
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-year {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  color: var(--pbmit-global-color);
}

.pbmit-element-timeline-style-1 .pbmit-timeline-title {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 20px;
  padding: 0 50px;
  text-transform: capitalize;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-desc {
  margin: 0;
  padding: 0 90px;
  line-height: 22px;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper {
  display: grid;
  width: 100%;
  height: auto;
  position: relative;
  justify-items: center;
  grid-template-rows: 1fr 1fr;
  text-align: center;
  grid-gap: 160px;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height.steps-content_wrap {
  justify-content: flex-start;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .pbmit-same-height.steps-content_wrap {
  justify-content: flex-end;
}

.pbmit-element-timeline-style-1 .pbmit-heading-subheading {
  margin-bottom: 80px;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .dot {
  background-color: var(--pbmit-blackish-color);
  display: block;
  line-height: normal;
  font-size: 14px;
  margin: auto;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  z-index: 2;
  position: relative;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto !important;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .dot::after {
  content: "";
  position: absolute;
  left: -11px;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 40px;
  margin: 0;
  background: rgb(var(--pbmit-blackish-color-rgb), 0.9);
  transform: rotate(-45deg);
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .steps-dot .dot::after {
  left: 19px;
  top: 0;
  bottom: auto;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line {
  color: transparent;
  line-height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after {
  content: "";
  width: calc(50% + 10px * 100);
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after {
  left: 50%;
  background: linear-gradient(90deg,
      rgb(var(--pbmit-blackish-color-rgb), 0.05),
      rgb(var(--pbmit-blackish-color-rgb), 0.05));
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before {
  right: 50%;
  background: linear-gradient(90deg,
      rgb(var(--pbmit-blackish-color-rgb), 0.05),
      rgb(var(--pbmit-blackish-color-rgb), 0.05));
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even.swiper-slide-duplicate:nth-last-child(2) .pbmit-feature-image {
  order: 0;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .pbmit-feature-image {
  order: 1;
  justify-content: start;
  transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper:not(.pbmit-slide-even) .pbmit-feature-image {
  transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-feature-image img {
  border-radius: 30px;
}

.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-feature-image,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-content_wrap {
  opacity: 1;
}

.pbmit-element-timeline-style-1 .swiper-button-prev,
.pbmit-element-timeline-style-1 .swiper-button-next {
  position: absolute;
}

.pbmit-element-timeline-style-1 .swiper-button-prev {
  right: auto;
  left: 10px;
}

.pbmit-element-timeline-style-1 .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}

/** 03 - Service Detail **/
.service-details>.container>.row {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.service-left-col .service-sidebar .post-list {
  background-color: var(--pbmit-white-color);
  padding-top: 40px;
  border-radius: 30px;
}

.service-details .all-post-list li {
  margin: 0;
  position: relative;
  line-height: 26px;
  border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.05);
}

.service-details .all-post-list li a {
  padding: 16px 60px 16px 20px;
  display: block;
  position: relative;
  border-radius: 0px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(var(--pbmit-blackish-color-rgb), 0.7);
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.service-details .all-post-list li a:before {
  position: absolute;
  content: "\e82b";
  font-family: "pbminfotech-base-icons";
  right: 10px;
  left: auto;
  width: 35px;
  height: 35px;
  color: var(--pbmit-global-color);
  top: 9px;
  border-radius: 50%;
  line-height: 35px;
  font-size: 8px;
  text-align: center;
  transform: translate3d(0px, 0px, 0px) rotateZ(0deg);
  transform-style: preserve-3d;
  transition: all 0.5s ease-in-out;
}

.service-details .all-post-list li a:after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-55%);
  -moz-transform: translateY(-55%);
  -o-transform: translateY(-55%);
  transform: translateY(-55%);
  background: var(--pbmit-blackish-color);
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 50%;
}

.service-details .all-post-list li:hover a,
.service-details .all-post-list li.post-active a {
  transform: translateX(1%);
  color: var(--pbmit-global-color);
}

.service-details .all-post-list li:hover a:before,
.service-details .all-post-list li.post-active a:before {
  transform: translate3d(10px, 0px, 0px) rotateZ(45deg);
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-global-color);
}

.service-details .all-post-list li.post-active a:before {
  opacity: 1;
}

.service-details .all-post-list li.post-active a:after,
.service-details .all-post-list li a:hover:after {
  background: var(--pbmit-global-color);
}

.service-details .all-post-list li:last-child {
  border-bottom: none;
}

.service-sidebar .widget:last-child {
  background-color: transparent;
  margin-bottom: 0px;
  padding: 0;
  border: none;
}

.widget .download {
  display: block;
}

.widget .download .item-download:first-child {
  margin-bottom: 20px;
}

.widget .download .item-download a {
  position: relative;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  padding-left: 25px;
  background-color: var(--pbmit-secondary-color);
  border-radius: 40px;
}

.widget .download .item-download .pbmit-download-content {
  font-size: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.widget .download .item-download .pbmit-download-content i {
  margin-right: 10px;
  font-size: 24px;
  color: var(--pbmit-global-color);
  transition: all 0.2s ease-in;
}

.widget .download .item-download a:hover .pbmit-download-content i {
  color: var(--pbmit-white-color);
}

.widget .download .item-download .pbmit-download-item {
  font-size: 16px;
  line-height: 16px;
  padding: 18px 13px;
  border-radius: 50%;
  background-color: var(--pbmit-blackish-color);
  color: var(--pbmit-white-color);
  transition: all 0.2s ease-in;
}

.widget .download .item-download .pbmit-download-item i {
  font-size: 26px;
  vertical-align: middle;
}

.widget .download .item-download a:hover {
  background-color: var(--pbmit-global-color);
  color: var(--pbmit-white-color);
}

.widget .download .item-download a:hover .pbmit-download-item {
  background-color: var(--pbmit-white-color);
  color: var(--pbmit-blackish-color);
}

.widget .download .item-download:last-child a {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-global-color);
}

.widget .download .item-download:last-child a .pbmit-download-content i {
  color: var(--pbmit-white-color);
  transition: all 0.3s ease-in-out;
}

.widget .download .item-download:last-child .pbmit-download-item {
  background-color: var(--pbmit-white-color);
  color: var(--pbmit-global-color);
}

.widget .download .item-download:last-child a:hover {
  background-color: var(--pbmit-blackish-color);
  color: var(--pbmit-white-color);
}

.widget .download .item-download:last-child a:hover .pbmit-download-content i {
  color: var(--pbmit-white-color);
}

.widget .download .item-download:last-child a:hover .pbmit-download-item {
  background-color: var(--pbmit-global-color);
  color: var(--pbmit-white-color);
}

.service-details .pbmit-service-feature-image img {
  margin-bottom: 50px;
  border-radius: 30px;
}

.service-details .service-single-img02 img {
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/




.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gclose {
  font-size: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.glightbox-clean .gclose:hover {
  background: rgba(255, 0, 0, 0.8);
}

/** 04 - Portfolio Single **/
/* .pbmit-portfolio-single .pbmit-featured-img-wrapper img {
  border-radius: 30px;
} */
/* .pbmit-featured-img-wrapper {
  height: 295px;
} */

.container-fluid {
  padding: 60px;
}

.pbmit-element-posts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.pbmit-portfolio-style-1 {
  padding: 15px;
  position: relative;
  overflow: hidden;
  width: 300px;
}

.pbmit-featured-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pbmit-featured-wrapper {
  position: relative;
  overflow: hidden;
}

.pbmit-featured-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}

/* Hover Zoom & Overlay */
.pbmit-featured-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.pbmit-featured-wrapper:hover .overlay {
  opacity: 1;
}

.overlay-content i {
  color: #fff;
  font-size: 28px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.pbmit-featured-wrapper:hover .overlay-content i {
  transform: scale(1);
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 20px;
  }

  .pbmit-portfolio-style-1 {
    width: 100%;
    max-width: 350px;
  }
}

.video-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Hover zoom */
.pbmit-featured-wrapper:hover .video-thumb {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* Overlay play icon */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.pbmit-featured-wrapper:hover .overlay {
  opacity: 1;
}

.overlay-content i {
  color: #fff;
  font-size: 36px;
  transition: transform 0.3s ease;
}

.pbmit-featured-wrapper:hover .overlay-content i {
  transform: scale(1.1);
}

.pbmit-single-project-details-list,
.pbmit-pf-entry-content {
  padding-top: 100px;
}

.pbmit-portfolio-single-style-2 .pbmit-single-project-details-list,
.pbmit-portfolio-single-style-2 .pbmit-pf-entry-content {
  padding-top: 30px;
}

.pbmit-portfolio-lines-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.2);
}

.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-li:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}

.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-title {
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.25px;
  text-transform: capitalize;
  position: relative;
  color: var(--pbmit-blackish-color);
}

.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-value {
  display: block;
}

.pbmit-pf-entry-content {
  padding-left: 48px;
}

.project-single-img_box {
  padding-bottom: 50px;
}

.project-single-img_box img {
  border-radius: 30px;
}

.pbmit-portfolio-single .ihbox-style-area {
  margin: 40px 0;
}

.pbmit-portfolio-single .post-navigation {
  margin-top: 50px;
  border-top: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}

.post-navigation .nav-links {
  margin-top: 0;
  padding: 40px 0 8px;
  display: -ms-flexbox;
  display: flex;
  align-items: normal;
  width: 100%;
}

.post-navigation .nav-previous {
  width: 50%;
  margin-right: auto !important;
  position: relative;
}

.post-navigation .nav-links a {
  display: block;
  text-align: left;
  width: 300px;
  transition: all 0.3s ease-in;
}

.post-navigation .pbmit-post-nav-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 5px;
}

.post-navigation .nav-links .nav-previous .pbmit-post-nav-icon {
  justify-content: flex-start;
}

.post-navigation .nav-links .pbmit-post-nav-icon i {
  font-size: 13px;
  color: var(--pbmit-global-color);
  transition: all 0.3s ease-in;
}

.post-navigation .nav-links .pbmit-post-nav-head {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
  color: rgba(var(--pbmit-blackish-color-rgb), 0.6);
}

.post-navigation .nav-links .pbmit-post-nav-wrapper {
  display: block;
}

.post-navigation .nav-links .nav-previous .pbmit-post-nav-wrapper {
  text-align: left;
}

.nav-links .pbmit-post-nav-wrapper {
  text-align: left;
  word-break: break-word;
}

.post-navigation .nav-links .nav-title {
  font-size: 22px;
  line-height: 26px;
  margin-top: 5px;
  text-transform: none;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.post-navigation .nav-links .nav-next {
  width: 50%;
  text-align: right;
  margin-left: auto;
}

.post-navigation .nav-links .nav-next a {
  display: block;
  text-align: right;
  margin-left: auto;
}

.post-navigation .nav-links .nav-next .pbmit-post-nav-wrapper {
  text-align: right;
}

.post-navigation .nav-links .nav-next .pbmit-post-nav-head {
  margin-right: 8px;
}

.post-navigation .nav-links a:hover .pbmit-post-nav-head,
.post-navigation .nav-links a:hover .pbmit-post-nav-icon i {
  color: var(--pbmit-blackish-color);
}

/** 05 - Blog Detail**/
.pbmit-column-four .container-fluid,
.pbmit-column-three .container-fluid {
  padding: 0 30px;
}

.pbmit-element-posts-wrapper.row .pbmit-blog-style-1 {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-sortable-col_4 .pbmit-element-posts-wrapper.row {
  margin-left: -15px;
  margin-right: -15px;
}

/** Sidebar Right **/
.sidebar .widget {
  padding: 29px;
  margin-bottom: 45px;
  border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
  border-radius: 30px;
  background-color: transparent;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget.widget-search {
  border: none;
  background-color: var(--pbmit-global-color);
}

.sidebar .widget .widget-title {
  display: block;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  width: auto;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0px;
  padding-left: 30px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--pbmit-blackish-color);
}

.sidebar .widget.widget-search .widget-title {
  color: var(--pbmit-white-color);
}

.sidebar .widget .widget-title:before {
  content: "\e853";
  font-family: "pbminfotech-base-icons";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: normal;
  color: var(--pbmit-global-color);
}

.sidebar .widget.widget-search .widget-title:before {
  color: var(--pbmit-white-color);
}

.widget .search-form {
  position: relative;
}

.widget .search-form input {
  background-color: var(--pbmit-white-color);
  height: 65px;
  border: 0;
  padding: 0px 30px;
  padding-right: 80px;
  background-color: var(--pbmit-white-color);
  color: var(--pbmit-blackish-color);
  font-size: 15px;
  border-radius: 40px;
  display: block;
  width: 100%;
}

.widget .search-form .search-submit {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 55px;
  height: 55px;
  font-size: 16px;
  z-index: 1;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  line-height: 58px;
  outline: none;
  background: var(--pbmit-light-color);
  transition: all 0.6s;
}

.widget .search-form .search-submit:after {
  position: absolute;
  font-family: "pbminfotech-base-icons";
  content: "\e80d";
  right: 50%;
  top: 50%;
  font-size: 16px;
  color: var(--pbmit-global-color);
  line-height: normal;
  font-weight: normal;
  -webkit-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}

.widget .search-form .search-submit:hover {
  background: var(--pbmit-blackish-color);
}

.widget .search-form .search-submit:hover:after {
  color: var(--pbmit-white-color);
}

.sidebar .widget-categories li {
  position: relative;
  line-height: 26px;
}

.sidebar .widget-categories .pbmit-cat-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--pbmit-blackish-color-rgb), 0.5);
  border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.05);
}

.sidebar .widget-categories ul li:last-child .pbmit-cat-li {
  border-bottom: none;
}

.sidebar .widget-categories .pbmit-cat-li a {
  font-size: 13px;
  line-height: 23px;
  position: relative;
  padding-left: 20px;
  margin: 15px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease-in-out;
}

.sidebar .widget-categories .pbmit-cat-li a:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-55%);
  -moz-transform: translateY(-55%);
  -o-transform: translateY(-55%);
  transform: translateY(-55%);
  background: var(--pbmit-blackish-color);
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 50%;
}

.sidebar .widget-categories .pbmit-brackets {
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}

.sidebar .widget-categories .pbmit-cat-li:hover,
.sidebar .widget-categories .pbmit-cat-li:hover .pbmit-brackets {
  color: var(--pbmit-global-color);
}

.sidebar .widget-categories .pbmit-cat-li>a:hover:before {
  background-color: var(--pbmit-global-color);
}

.widget-recent-post .recent-post-list-li:first-child {
  margin-top: 0px;
  padding-top: 0px;
  border-top: none;
}

.widget-recent-post .recent-post-list-li {
  display: flex !important;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  padding-bottom: 18px;
  line-height: 20px;
  border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}

.widget-recent-post .recent-post-list-li:last-child {
  border-bottom: none;
}

.widget-recent-post .recent-post-list-li>a {
  width: 90px;
  flex-shrink: 0;
  margin-right: 20px;
  display: inline-block;
}

.widget-recent-post .recent-post-list-li>a img {
  border-radius: 20px;
}

.widget-recent-post .pbmit-rpw-content {
  display: flex;
  flex-direction: column;
}

.widget-recent-post .pbmit-rpw-title a {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 20px;
}

.widget-recent-post .pbmit-rpw-title a:hover {
  color: var(--pbmit-global-color);
}

.pbmit-rpw-content .pbmit-rpw-date a {
  color: var(--pbmit-global-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.widget ul a {
  display: inline-block;
}

.widget.pbmit-service-ad .textwidget:before,
.widget.pbmit-service-ad .textwidget:after {
  content: "";
  display: table;
}

.widget.pbmit-service-ad .textwidget:after {
  clear: both;
}

.widget.pbmit-service-ad {
  background-image: url(../images/bg/service-ads-bg.png);
  background-size: cover;
  background-position: center center;
  background-color: var(--pbmit-blackish-color);
  border: none;
}

.widget.pbmit-service-ad .pbmit-service-ads {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 0 60px 0;
  border-radius: 30px;
}

.pbmit-service-ads .pbmit-ads-subheding {
  font-size: 11px;
  line-height: 26px;
  letter-spacing: 0.5px;
  font-weight: 500 !important;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 0 13px 0 20px;
  margin-bottom: 25px;
  color: var(--pbmit-white-color);
  border: 1px solid var(--pbmit-white-color);
}

.pbmit-service-ads .pbmit-ads-subtitle {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  color: var(--pbmit-white-color);
}

.pbmit-service-ads .pbmit-ads-title {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: var(--pbmit-white-color);
}

.pbmit-service-ads .pbmit-ads-desc {
  font-size: 15px;
  line-height: 21px;
  padding-top: 25px;
  color: var(--pbmit-white-color);
}

.pbmit-service-ads .pbmit-ads-desc i {
  font-size: 18px;
  padding-right: 5px;
  color: var(--pbmit-global-color);
}

.pbmit-service-ads .pbmit-btn {
  margin-top: 30px;
}

aside.widget.widget-tag-cloud a,
.pbmit-blog-meta-bottom .pbmit-meta-tags a {
  line-height: 30px;
  margin: 0 4px 12px 0;
  display: inline-block;
  font-size: 13px !important;
  font-weight: 600;
  padding: 0 14px;
  height: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  -webkit-transition: 0.4s ease-out 0s;
  -o-transition: 0.4s ease-out 0s;
  transition: 0.4s ease-out 0s;
  color: var(--pbmit-blackish-color);
  background-color: var(--pbmit-secondary-color);
  border-radius: 30px;
}

aside.widget.widget-tag-cloud a:hover,
.pbmit-blog-meta-bottom .pbmit-meta-tags a:hover {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-global-color);
}

/** Blog Classic **/
.site-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.post.blog-classic {
  position: relative;
  background: 0 0;
  margin-bottom: 60px;
}

.post.blog-classic .pbmit-featured-wrapper img {
  border-radius: 30px;
}

.post.blog-classic:last-child {
  margin-bottom: 0px;
}

.post.blog-classic .pbmit-featured-img-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.blog-classic .pbmit-blog-classic-inner {
  background: 0 0;
  padding: 0;
  position: relative;
}

.pbmit-blog-meta.pbmit-blog-meta-top {
  position: relative;
  font-size: 14px;
}

.pbmit-blog-meta-top.pbmit-blog-meta,
.pbmit-blog-meta-top.pbmit-blog-meta a {
  color: rgba(var(--pbmit-blackish-color-rgb), 0.8);
}

.pbmit-blog-meta-top .pbmit-meta a:hover {
  color: var(--pbmit-global-color);
}

.pbmit-blog-meta-top.pbmit-blog-meta .pbmit-meta-cat a:hover {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-blackish-color);
}

.pbmit-blog-meta-top .pbmit-meta {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.pbmit-blog-meta-top .pbmit-meta:first-child {
  padding-left: 0;
}

.pbmit-blog-meta-top .pbmit-meta:not(:last-child):before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 2px;
  height: 10px;
  transform: translate(0, -50%);
  background-color: rgba(var(--pbmit-blackish-color-rgb), 0.4);
}

.blog-classic .pbmit-blog-meta span.pbmit-meta.pbmit-meta-author::before,
.blog-classic .pbmit-blog-meta span.pbmit-meta:last-child::before,
.pbmit-meta-line:last-child::before {
  display: none;
}

.blog-classic .pbmit-meta-cat a {
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.5px;
  padding: 5px 15px 4px 15px;
  border-radius: 15px;
  color: var(--pbmit-global-color);
  background-color: var(--pbmit-secondary-color);
}

.pbmit-blog-meta-top .pbmit-meta i {
  margin-right: 2px;
  font-size: 20px;
  color: var(--pbmit-global-color);
  display: none;
}

.pbmit-blog-meta-top .pbmit-meta-comments {
  display: none;
}

.blog-classic .pbmit-post-title {
  margin-bottom: 25px;
  margin-top: 15px;
  font-size: 36px;
  padding-bottom: 20px;
  line-height: 42px;
  text-transform: none;
  letter-spacing: 0px;
  border-bottom: 1px solid rgba(24, 26, 23, 0.2);
}

.blog-classic .pbmit-hide {
  display: none;
}

.blog-classic .pbmit-entry-content {
  margin-top: 20px;
}

.blog-classic .pbmit-entry-content .pbmit-btn-outline:hover {
  border-color: var(--pbmit-global-color);
  background-color: var(--pbmit-global-color);
}

/** Blog Single **/
.blog-details .post.blog-classic {
  margin-bottom: 30px;
}

.blog-details .post.blog-classic .pbmit-blog-meta-top {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(3, 27, 78, 0.1);
}

.pbmit-firstletter::first-letter {
  color: var(--pbmit-global-color);
  padding: 0;
  font-size: 52px;
  line-height: 48px;
  display: inline-block;
  float: left;
  font-weight: 700;
  margin-right: 8px;
}

.blog-details .pbmit-entry-content blockquote {
  padding: 40px 40px 40px 120px;
  font-size: 22px;
  line-height: 32px;
  margin: 30px 0;
  position: relative;
  letter-spacing: 0;
  border-radius: 30px;
  color: var(--pbmit-blackish-color);
  background-color: transparent;
  border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
  font-weight: 500 !important;
  font-family: var(--pbmit-heading-typography-font-family);
}

.blog-details .pbmit-entry-content blockquote:before {
  content: "\e839";
  font-family: "pbminfotech-base-icons";
  font-size: 20px;
  line-height: 60px;
  position: absolute;
  top: 40%;
  left: 60px;
  font-style: normal;
  color: var(--pbmit-white-color);
  background: var(--pbmit-global-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.blog-details .pbmit-entry-content blockquote p {
  margin-bottom: 0;
}

.blog-details .pbmit-entry-content:after {
  clear: both;
  content: "";
  display: table;
}

.blog-details .pbmit-entry-content blockquote cite {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--pbmit-global-color);
  display: block;
  line-height: 24px;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.blog-details .pbmit-entry-content blockquote cite:before {
  content: "-";
  margin-right: 5px;
}

.blog-details .pbmit-entry-content blockquote:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.blog-details .pbmit-entry-content .pbmit-block-columns {
  display: flex;
  margin-bottom: 1.75em;
}

.blog-details .pbmit-entry-content .pbmit-block-columns img {
  margin-top: 15px;
  border-radius: 30px;
}

.blog-details .pbmit-entry-content .pbmit-block-column:first-child figure {
  padding: 0 10px 0 0;
}

.blog-details .pbmit-entry-content .pbmit-block-column:last-child figure {
  padding: 0 0 0 10px;
}

.blog-details .list-group .pbmit-icon-list-icon i {
  font-size: 22px;
  margin-right: 8px;
}

.blog-details .list-group {
  padding-top: 20px;
}

.blog-details .list-group .pbmit-icon-list-text {
  padding-left: 0;
}

.blog-details .pbmit-blog-meta-bottom {
  margin-top: 15px;
}

.blog-details .post-navigation {
  border-top: 1px solid rgba(24, 26, 23, 0.1);
  margin-top: 30px;
}

.blog-details .pbmit-author-box {
  position: relative;
  overflow: hidden;
  margin-top: 45px;
  margin-bottom: 0;
  padding: 40px;
  padding-right: 80px;
  background-color: var(--pbmit-secondary-color);
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-radius: 30px;
}

.blog-details .pbmit-author-image img {
  width: 154px;
  min-width: 154px;
  height: 154px;
  border: 4px solid var(--pbmit-global-color);
  display: block;
  overflow: hidden;
  margin-right: 40px;
  border-radius: 50%;
  padding: 20px;
  background: var(--pbmit-white-color);
}

.blog-details .pbmit-author-content {
  -webkit-flex-shrink: 100;
  -moz-flex-shrink: 100;
  -ms-flex-negative: 100;
  flex-shrink: 100;
}

.blog-details .pbmit-author-content .pbmit-author-name {
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: inline-block;
}

.blog-details .pbmit-author-box a {
  color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-author-box a:hover {
  color: var(--pbmit-global-color);
}

.blog-details .pbmit-author-content .pbmit-text {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--pbmit-blackish-color);
}

.blog-details .comments-area {
  margin-top: 60px;
}

.blog-details .comments-area .comments-title {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 48px;
}

.blog-details .comment-list li:not(:last-child) .pbmit-comment {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}

.comment-list .pbmit-comment-avatar {
  float: left;
}

.comment-list .pbmit-comment-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}

.blog-details .pbmit-comment-content {
  position: relative;
  padding: 0px 0px 30px 0;
  margin-left: 115px;
  min-height: 115px;
}

.blog-details .pbmit-comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pbmit-comment-content .pbmit-comment-author {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 26px;
  display: inline-flex;
  position: relative;
  color: var(--pbmit-blackish-color);
}

.pbmit-comment-author-inner {
  margin: 0 5px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--pbmit-global-color);
}

.pbmit-comment-author-inner a {
  color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-comment-date {
  display: block;
  font-size: 18px;
  padding: 0 0 0 15px;
  font-weight: 400;
  color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-comment-date a {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding: 0 0 0 10px;
  color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-comment-date a:first-child::before {
  position: absolute;
  content: "";
  left: 0px;
  height: 1px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  background: var(--pbmit-global-color);
}

.blog-details .pbmit-comment-content p {
  margin: 10px 0 18px;
}

.blog-details .pbmit-comment-content .reply a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  letter-spacing: 0.1px;
  -webkit-transition: 0.4s ease-out 0s;
  -o-transition: 0.4s ease-out 0s;
  transition: 0.4s ease-out 0s;
  color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-comment-content .reply a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 70%;
  height: 1px;
  background-color: var(--pbmit-blackish-color);
}

.blog-details .pbmit-comment-content .reply a::after {
  font-family: "pbminfotech-base-icons";
  content: "\e82b";
  font-style: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  opacity: 1;
  font-variant: normal;
  text-transform: none;
  line-height: 8px;
  font-size: 8px;
  margin-left: 6px;
}

.blog-details .pbmit-comment-content .reply a:hover {
  color: var(--pbmit-global-color);
}

.blog-details .pbmit-comment-content .reply a:hover::before {
  background-color: var(--pbmit-global-color);
}

.comment-list .children {
  margin-left: 100px;
  padding-top: 8px;
}

.blog-details .comment-list li:not(:last-child) .pbmit-comment {
  border-bottom: 1px solid rgba(3, 27, 78, 0.1);
}

.blog-details .comment-respond {
  background-color: var(--pbmit-secondary-color);
  padding: 60px 70px;
  border-radius: 30px;
  margin-top: 28px;
  margin-bottom: 20px;
}

.blog-details .comment-respond .comment-reply-title {
  margin-bottom: 25px;
}

.blog-details .comment-respond .comment-notes {
  font-size: 15px;
}

.blog-details .comment-respond .comment-form .form-check label {
  font-size: 15px;
}

.blog-details .comment-respond .comment-form form button {
  padding: 13px 35px;
}

/** 06 - Team Single **/
.pbmit-team-single {
  padding-bottom: 80px;
}

.pbmit-team-single .pbmit-team-single-info {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  padding-top: 80px;
}

.pbmit-team-single .pbmit-team-left-inner {
  margin-right: -35px;
  z-index: 1;
  position: relative;
}

.pbmit-team-single .pbmit-featured-wrapper {
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
}

.pbmit-team-single .pbmit-featured-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pbmit-team-single .pbmit-team-detail {
  position: relative;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  background: var(--pbmit-secondary-color);
}

.pbmit-team-single .pbmit-team-detail:after {
  position: absolute;
  content: "";
  left: 0;
  z-index: 1;
  top: 0;
  height: 100%;
  background-image: url(../images/bg/team-detail-bg.png);
  width: 100%;
  background-position: center;
}

.pbmit-team-single .pbmit-team-detail .pbmit-team-des {
  padding: 115px 100px 0 105px;
  z-index: 2;
  position: relative;
}

.pbmit-team-single .pbmit-team-summary {
  margin-bottom: 15px;
}

.pbmit-team-summary .pbmit-team-designation {
  color: var(--pbmit-global-color);
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.pbmit-team-des .pbmit-short-description {
  margin-bottom: 30px;
}

.pbmit-team-des .pbmit-single-team-info {
  padding-bottom: 40px;
}

.pbmit-single-team-info li {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--pbmit-blackish-color);
}

.pbmit-single-team-info li label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  min-width: 120px;
  padding-right: 10px;
  display: inline-block;
  text-transform: capitalize;
  color: var(--pbmit-global-color);
}

.pbmit-team-single .pbmit-social-links li {
  margin-bottom: 5px;
  margin-right: 3px;
  padding: 0;
}

.pbmit-team-single .pbmit-social-links li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 15px;
  border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.pbmit-team-single .pbmit-social-links li a:hover {
  color: var(--pbmit-white-color);
  border-color: var(--pbmit-global-color);
  background-color: var(--pbmit-global-color);
}

.pbmit-team-single .comment-respond {
  border-radius: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 60px 75px 70px 75px;
  background-color: var(--pbmit-secondary-color);
}

/** 07 - Contact Us **/
.contact-us-bg {
  background-image: url(../images/bg/contact-bg-flower.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.contact-form-leftbox {
  padding-right: 60px;
}

.pbmit-contact-social .pbmit-heading .pbmit-title {
  font-size: 22px;
  line-height: 22px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  color: var(--pbmit-blackish-color);
}

.pbmit-contact-social .pbmit-social-links li {
  padding-right: 0;
}

.pbmit-contact-social .pbmit-social-links a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--pbmit-global-color);
  border: 1px solid var(--pbmit-global-color);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.pbmit-contact-social .pbmit-social-links a:hover {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-global-color);
  border-color: var(--pbmit-global-color);
}

.contact-form-rightbox {
  padding: 55px 50px 50px 50px;
  border-radius: 30px;
  background-color: var(--pbmit-secondary-color);
}

.contact-form-rightbox .pbmit-title {
  font-size: 36px;
  color: var(--pbmit-blackish-color);
}

.iframe-section {
  padding: 50px 100px 100px 100px;
}

.iframe-section iframe {
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none;
  height: 600px;
  border-radius: 30px;
}

label.error {
  background: red;
  color: white;
  border-radius: 0px 0 10px 10px;
  margin-bottom: 15px;
  padding: 0 10px;
  font-size: 12px;
  display: block;
  margin-top: 0px;
  margin-right: 20%;
}

.message-status {
  margin-top: 30px;
}

.form-control.error {
  margin-bottom: 0 !important;
}

/**08 - Comment Form **/
.form-control,
form select {
  border: unset;
  background-color: var(--pbmit-white-color);
  height: 60px;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}

textarea.form-control {
  height: 130px;
  resize: none;
  padding: 20px;
  border-radius: 15px;
  border: unset;
}

form select {
  width: 100%;
  cursor: pointer;
}

form select:focus {
  outline: none;
}

form .form-check {
  margin: 22px 0;
}

form .form-check-label {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #157a00;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: white;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #ffffff, #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, #394450, transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: #157a00;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: #90df12;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}


.chat-wrapper {
  position: fixed;
  bottom: 70px;
  right: 9px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* opacity: 0; */
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 9999;
  /* pointer-events: none;  */
}

.chat-wrapper.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  /* keep your existing styles */
  background: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.treatment-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.treatment-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c59d5f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/* Video Hover Effects */
.video-thumb {
  width: 100%;
  border-radius: 6px;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(0.85);
  cursor: pointer;
}

.pbmit-featured-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.pbmit-featured-wrapper:hover .video-thumb {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Overlay Play Icon */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  opacity: 0;
  transition: .4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-content i {
  font-size: 45px;
  color: #fff;
  transition: transform .3s;
}

.pbmit-featured-wrapper:hover .overlay {
  opacity: 1;
}

.pbmit-featured-wrapper:hover .overlay-content i {
  transform: scale(1.2);
}


/* ===== TREATMENT SECTION ===== */
.pricing-Plan {
    background: #faffea;
    padding: 80px 0;
}

/* Section Heading */
.pbmit-heading-subheading h4 {
    color: #6b7d00;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pbmit-heading-subheading h2 {
    font-size: 42px;
    margin-top: 10px;
}

/* ===== CARD STYLE ===== */
.pbmit-ihbox-style-3 {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.pbmit-ihbox-style-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(183,226,0,0.25);
}

/* Accent strip */
.pbmit-ihbox-style-3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #b7e200;
}

/* Icon wrapper */
.pbmit-ihbox-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #faffea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbmit-ihbox-icon-wrapper img {
    max-width: 45px;
}

/* Content */
.pbmit-element-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.pbmit-heading-desc {
    color: #555;
    line-height: 1.6;
}

/* Grid spacing */
.pricing-Plan .pbmit-ele {
    margin-bottom: 30px;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 767px) {
    .pbmit-heading-subheading h2 {
        font-size: 32px;
    }

    .pbmit-ihbox-style-3 {
        flex-direction: column;
        text-align: center;
    }

    .pbmit-ihbox-style-3::before {
        width: 100%;
        height: 5px;
    }
}


.nav-bg{
  background-color: #89c500;
}



/* ===== SECTION BASE ===== */
.static-box-section-one {
    padding: 80px 0;
    background: #f9faf6;
}

/* Card */
.pbmit-static-box-style-1 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.pbmit-static-box-style-1:hover {
    transform: translateY(-8px);
}

/* Wrapper */
.pbmit-title-img-wrapper {
    position: relative;
    min-height: 360px;
}

/* IMAGE BOX (HIDDEN INITIALLY) */
.pbmit-bg-imgbox {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

/* Dark overlay on image */
.pbmit-bg-imgbox::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* Hide actual img tag */
.pbmit-bg-imgbox .pbmit-img {
    display: none;
}

/* CONTENT BOX */
.pbmit-contentbox {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    background: #ffffff;
    transition: transform 0.6s ease, background 0.6s ease;
}

/* Hover effect */
.pbmit-static-box-style-1:hover .pbmit-bg-imgbox {
    transform: translateX(0);
}

.pbmit-static-box-style-1:hover .pbmit-contentbox {
    transform: translateX(-100%);
    background: transparent;
}

/* Content inner */
.pbmit-contentbox-inner {
    max-width: 280px;
}

/* Icon */
.pbmit-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #b7e200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Title */
.pbmit-staticbox-title h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Description */
.pbmit-static-box-desc {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Hover text color */
.pbmit-static-box-style-1:hover .pbmit-staticbox-title h4,
.pbmit-static-box-style-1:hover .pbmit-static-box-desc {
    color: #fff;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {

    .pbmit-title-img-wrapper {
        min-height: 320px;
    }

    /* Disable hover slide on mobile */
    .pbmit-bg-imgbox {
        transform: translateX(0);
    }

    .pbmit-contentbox {
        background: rgba(0,0,0,0.55);
        color: #fff;
    }

    .pbmit-staticbox-title h4,
    .pbmit-static-box-desc {
        color: #fff;
    }
}






/* ===== ABOUT SECTION BASE ===== */
.about-us-one-bg {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9fbea, #ffffff);
    position: relative;
}

/* Section heading */
.pbmit-heading-subheading h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6a7c00;
    margin-bottom: 10px;
}

.pbmit-heading-subheading h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

/* Left content box */
.about-us-one-leftbox {
    padding-right: 40px;
}

/* ===== CALL INFO BOX ===== */
.pbmit-ihbox-style-6 {
    margin: 35px 0;
    background: #ffffff;
    border-left: 6px solid #b7e200;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 360px;
}

.pbmit-ihbox-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #b7e200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 20px;
}

.pbmit-ihbox-headingicon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pbmit-heading-desc {
    font-size: 14px;
    color: #666;
}

.pbmit-element-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

/* ===== BUTTON ===== */
.pbmit-btn-outline {
    border: 2px solid #b7e200;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    color: #111;
    transition: all 0.3s ease;
}

.pbmit-btn-outline:hover {
    background: #b7e200;
    color: #111;
    box-shadow: 0 10px 25px rgba(183,226,0,0.4);
    transform: translateY(-2px);
}

/* ===== RIGHT CONTENT CARD ===== */
.pbmit-ihbox-content {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
}

/* Decorative highlight bar */
.pbmit-ihbox-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: #b7e200;
    border-radius: 0 0 10px 0;
}

/* Text styling */
.pbmit-ihbox-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.pbmit-color-blackish {
    font-weight: 500;
    color: #222;
}

/* Divider */
.pbmit-ihbox-content hr {
    border: none;
    height: 1px;
    background: #e6e6e6;
    margin: 25px 0;
}

/* Tamil paragraph */
.pbmit-ihbox-content p:last-child {
    font-size: 15px;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .about-us-one-leftbox {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pbmit-heading-subheading h2 {
        font-size: 32px;
    }

    .pbmit-ihbox-content {
        padding: 30px 25px;
    }
}






/* ===== SERVICE SECTION BASE ===== */
.service-section-one {
    background: linear-gradient(135deg, #f9fbea, #ffffff);
    padding: 90px 0;
}

/* Section heading */
.service-section-one .pbmit-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6a7c00;
}

.service-section-one .pbmit-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

/* ===== SERVICE CARD ===== */
.pbmit-service-style-1 {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pbmit-service-style-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* Image */
.pbmit-featured-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pbmit-service-style-1:hover img {
    transform: scale(1.1);
}

/* ===== OVERLAY ===== */
.pbmit-service-style-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pbmit-service-style-1:hover::after {
    opacity: 1;
}

/* ===== TEXT CONTENT ===== */
.pbmit-service-style-1::before {
    content: "Varma Medical Camp";
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pbmit-service-style-1:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight line */
.pbmit-service-style-1 span {
    position: absolute;
    left: 25px;
    bottom: 15px;
    width: 60px;
    height: 4px;
    background: #b7e200;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pbmit-service-style-1:hover span {
    opacity: 1;
}

/* ===== SWIPER ARROWS ===== */
.service-arrow .swiper-button-next,
.service-arrow .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #b7e200;
    border-radius: 50%;
    color: #111;
    box-shadow: 0 10px 25px rgba(183,226,0,0.4);
}

.service-arrow .swiper-button-next:hover,
.service-arrow .swiper-button-prev:hover {
    background: #a6ce00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .pbmit-featured-wrapper img {
        height: 260px;
    }

    .service-section-one .pbmit-title {
        font-size: 32px;
    }
}




