/********** Template CSS **********/
:root {
  --primary: #06A3DA;
  --secondary: #F57E57;
  --light: #EEF9FF;
  --dark: #091E3E;
}

html {
  scroll-behavior: smooth;
  /* for smooth scrolling */
  scroll-padding-top: 90px;
  /* adjust based on navbar height */

}

body {
  overflow-x: hidden;
}


h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h4 {
  font-size: 1.2rem;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
}

.btn-primary,
.btn-secondary {
  background: #123986;
  border-color: #123986;
  box-shadow: none;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-primary:active,
.btn-secondary:active {
  box-shadow: none !important;
  background: #123986;
  border-color: #123986;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #EF232C;
  border-color: #EF232C;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: #EF232C;
  border-color: #EF232C;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

#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;
}

.display-1 {
  font-size: 48px;
}

.back-to-top {
  position: fixed;
  right: 45px;
  bottom: 80px;
  z-index: 99;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: var(--primary);
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Jost', sans-serif;
  padding: 35px 15px;
  font-size: 18px;
  color: var(--dark);
  outline: none;
  transition: .5s;
}



#solutionFor,
#healthcare,
#architects,
#supplier {
  scroll-margin-top: 200px;
  /* adjust to your navbar height */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #EF232C;
}

.navbar-brand img {
  width: 33%;
}

.footer-wrapper {
  text-align: left;
}

.sticky-div {
  position: fixed;
  bottom: 0;
  width: 100%;
  gap: 3;
  background: #EEF9FF;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 999999;
  justify-content: center;
}

.sticky-wrap {
  align-items: center;
  gap: 45px;
  height: 70px;

}

.demo-btn {
  height: 45px;
  font-size: 22px;
}

@media (max-width: 991.98px) {

  .navbar-light .navbar-nav .nav-link {
    padding: 6px 0;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding-left: 20px;
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }

  .page-header .navbar-toggler {
    padding: 0px;
    background: transparent;
    border: none;
  }

  .page-header .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Toggle Icon Logic */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
  .navbar-toggler.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    opacity: 0.8;
    width: 20px;
    height: 20px;
  }

}



@media (max-width: 767px) {
  .carousel-caption {
    height: 300px !important;
  }
}

.carousel-caption {
  left: 0;
  right: 0;
  background: rgba(9, 30, 62, .85);
  z-index: 1;
  bottom: 0;
  height: 600px;
}

.banner-bg {
  height: 550px;
}

.client-carousel {
  overflow: hidden;
  background: #f8f9fa;
  padding: 20px 0;
}

.client-track {
  display: flex;
  width: calc(200px * 10);
  /* depends on logos */
  animation: scroll 20s linear infinite;
}

.client-logo {
  width: 200px;
  margin: 0 20px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.client-logo:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* adjust for half duplication */
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 12px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }

  .display-1 {
    margin-top: 3rem;
    font-size: 21px;
  }

  .carousel-item {
    height: 300px;
  }

  .banner-bg {
    display: none;
  }

  .btn {
    font-size: 12px !important;
  }

  .navbar-brand {
    width: 72%;
  }


}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (min-width: 991.98px) {
  .banner {
    position: relative;
    margin-top: -90px;
    z-index: 1;
  }
}

.section-title h5::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 3px;
  right: -55px;
  bottom: 11px;
  background: var(--primary);
}

.section-title h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  right: -75px;
  bottom: 11px;
  background: var(--secondary);
}

.twentytwenty-wrapper {
  height: 100%;
}

.hero-header {
  background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), center center no-repeat;
  background-size: cover;
}

.bg-appointment {
  background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), center center no-repeat;
  background-size: cover;
}

.appointment-form {
  background: rgba(6, 163, 218, .7);
}

.service-block {
  height: 350px;
}


.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
  transition: .5s;
}

.service-item:hover img {
  transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0;
  left: 15px;
  right: 15px;
  border-radius: 100px / 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .7);
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
  opacity: 1;
}

.bg-offer {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.offer-text {
  background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 45px);
  height: 45px;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
}

.price-carousel:hover .owl-nav {
  opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.bg-testimonial {
  background: url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 46px);
  height: 46px;
  top: calc(50% - 23px);
  left: -23px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
}

/* new-sec */

section.sticky-section {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
}

.left-sticky {
  flex: 0 0 40%;
  background: #002b5b;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 80vh;
}

.left-sticky h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.right-scroll {
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
  max-height: 90vh;
}

.scroll-inner {
  display: flex;
  flex-direction: column;
}

.scroll-block {
  min-height: 40vh;
  /* reduced height */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-size: 1.1rem;
  background: #fff;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: #e8f0ff;
}


/* Dummy section after */
.next-section {
  min-height: 100vh;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.improving-img {
  border-radius: 18px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
}

.tab-text {
  cursor: pointer;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: 0.3s;
  color: #ccc;
}

.tab-text.active {
  border-bottom: 2px solid #fff;
  color: #fff;
}

/* Right side carousel transparency so background is visible */
#rightCarousel .carousel-item img {
  height: 50vh;
  width: 50%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.6);
  /* blue shade with 60% opacity */
  z-index: 1;
}

/* Text should appear above overlay */
.col-md-6.position-relative,
.col-md-6.text-center {
  z-index: 2;
}

.mvedas-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.learn-more-btn {
  margin-top: 15px;
}

.collapse-content {
  margin-top: 25px;
  border-left: 3px solid #0d6efd;
  padding-left: 15px;
}

.point-title {
  font-weight: 600;
  font-size: 18px;
}

.section-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-modern {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  overflow: hidden;
  background: #0d1b2a;
}

.her0-architects {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
  overflow: hidden;
  background: #0d1b2a;
}

.banner-fonts {
  margin-top: 7rem;
}

.counter-section {
  background-color: #092a5a;
}

.dropdown-item.active {
  background-color: #0d6efd;
  color: #fff !important;
}

.card-hover {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.card-hover:hover {
  /* transform: rotateY(8deg) rotateX(8deg) scale(1.05); */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: blobMove 18s infinite alternate ease-in-out;
}

.blob:nth-child(1) {
  background: radial-gradient(circle at 30% 30%, #0072ff, transparent);
  animation-duration: 22s;
}

.blob:nth-child(2) {
  background: radial-gradient(circle at 70% 70%, #00c6ff, transparent);
  animation-duration: 26s;
}

.blob:nth-child(3) {
  background: radial-gradient(circle at 40% 40%, #1e90ff, transparent);
  animation-duration: 30s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(200px, -150px) scale(1.3);
  }

  100% {
    transform: translate(-150px, 100px) scale(1);
  }
}

/* 🔹 Tabs Styling */
.nav-tabs {
  border: none;
  margin-bottom: 20px;
  z-index: 5;
  position: relative;
}

.nav-tabs .nav-link {
  color: white;
  border: none;
  margin: 0 5px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
}

/* 🔹 Tab Content */
.tab-content {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 5;
  position: relative;
}


/* cards */
.mvedas-modern {
  padding: 80px 0;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1a2a6c);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

/* .section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00d2ff;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
} */

.cards-container {
  margin-top: 25px;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.info-card h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card span {
  font-size: 1.5rem;
}

.img-wrapper {
  position: relative;
}

.floating-img {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}


.banner-text {
  font-size: 46px;
}

/* banner image */

.hero-modern {
  min-height: 100vh;
  background-image: url('../img/main-banner.png');
  position: relative;
  overflow: hidden;
}

.hero-healthcare {
  min-height: 100vh;
  background-image: url('../img/banner-heath-care-provider.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-architect {
  min-height: 100vh;
  background-image: url('../img/banner-arch-planners.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-supplier {
  min-height: 100vh;
  background-image: url('../img/banner-supplier.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.plan-advisor-banner {
  min-height: 100vh;
  background-image: url('../img/plan-vise-image.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.procure-assist-banner {
  min-height: 100vh;
  background-image: url('../img/banner-procure-assit.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* banner image */



.hero-bg {
  background: url('your-cityscape-image.jpg') center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;

  z-index: 2;
  /* max-width: 1000px; */
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: 0px;
}

.navbar-light .navbar-brand {
  width: 600px;
}

.nav-tabs .nav-link {
  color: #fff;
  border: none;
  margin: 0 8px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background: #e94e1b;
  color: #fff;
  font-weight: bold;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.typewriter-text {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
  height: 56px;
}

.typewriter-text-architect {
  font-weight: bold;
  margin-top: 13rem;
}

h1.typewriter-text-architect {
  font-size: 42px;
  /* margin-top: 14rem; */
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  color: #00e5ff;
  animation: blink 0.7s infinite;
  font-weight: bold;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}


/* healthcare blocks */
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  font-size: 22px;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
  /* or use brand colors */
}

.card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.card-hover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-hover .card-body {
  background: #f1f3f6;
  min-height: 195px;
}

.card-hover .health-body {
  min-height: 250px;
}

.card-hover .architect-body {
  min-height: 345px;
}

.card-hover .health-body {
  min-height: 285px;
}

.card-hover .supplier-body {
  min-height: 245px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(244, 67, 54, 0.9); */
  background: rgb(239 35 44 / 90%);
  /* Red overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.1s ease;
  text-align: center;
  padding: 20px;
}



.card-hover:hover .overlay {
  opacity: 1;
}

.overlay h5 {
  font-weight: bold;
}

.overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.overlay a:hover {
  text-decoration: underline;
}

/* client carousel */
.client-carousel {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  /* slow & smooth */
}

.carousel-track img {
  margin: 0 40px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.1);
}

/* Animation keyframes */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* testimonial  */
.testimonial-wrapper {
  background-color: #123986;
}

.testimonial-carousel {
  background-color: #0a2a5b;
}


/* support */

.support-card {
  max-width: 700px;
  margin: 70px auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
}

.support-hero {
  background: linear-gradient(135deg, #3f5efb 0%, #fc466b 100%);
  color: #fff;
  text-align: center;
  padding: 60px 25px;
}

.support-hero h2 {
  font-weight: 700;
  margin-bottom: 12px;
}

.support-body {
  padding: 40px 25px;
  text-align: center;
}

.support-email a {
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: #3f5efb;
}

.support-email a:hover {
  text-decoration: underline;
}

.muted-note {
  color: #6c757d;
  font-size: .9rem;
  margin-top: 8px;
}

.feature-card {
  transition: all 0.5s ease-in-out;
}

.heading-justify {
  /* text-align: justify; */
  text-align-last: left;
  max-width: 600px;
}

/* Expanded state */
.feature-card.expanded {
  flex: 0 0 100% !important;
  /* required for bootstrap grid override */
  max-width: 50% !important;
  /* col-lg-6 effect */
}

@media (max-width: 991.98px) {
  .feature-card.expanded {
    max-width: 100% !important;
    /* col-md-12 */
  }
}


.page-header {
  position: sticky;
  top: 0;
  z-index: 1020
}

.common-banner-section {
  background-repeat: no-repeat;
  height: calc(100vh - 167px);
  min-height: auto;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-position: center 90%;
  padding-top: 130px;
}

.page-footer {
  padding-bottom: 70px;
}

.page-footer .footer-wrapper {
  margin: 0p x;
}

.book-demo-blue-btn {
  border-color: rgb(248, 249, 250);
  background: #f8f9fa;
}

.btn:focus {
  box-shadow: none !important;
}

.book-demo-blue-btn:focus {
  box-shadow: none !important;
  background: transparent !important;
  border-color: rgb(248, 249, 250) !important;
  color: #f8f9fa !important;
}

.book-demo-blue-btn:hover {
  background: transparent;
  border-color: rgb(248, 249, 250);
  color: #f8f9fa;
}

.footer-wrapper p a {
  color: rgb(248, 249, 250);
}

.privacy-policy-page h1 {
  color: #123986;

}

.privacy-policy-page .section-title {
  margin-bottom: 32px;
}

.appointment-email-field {
  margin-top: 32px;
}

.appointment-email-field i {
  color: #fff !important;
}

.appointment-email-field h5 {
  color: #fff !important;
}

.appointment-email-field a {
  color: #fff !important;
}


@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 96px;
  }
}

@media (max-width: 991.98px) {
  .page-footer .footer-wrapper {
    margin-top: 24px;
  }

  .page-footer .footer-wrapper:nth-child(1),
  .page-footer .footer-wrapper:nth-child(2) {
    margin-top: 0px;
  }

  .hero-content h1 {
    font-size: 62px;
  }

  .hero-content .banner-fonts {
    margin-top: 32px;
  }

  .common-banner-section {
    height: calc(100vh - 160px);
    background-position: 90% 90%;
    padding-top: 0px;
    justify-content: center;
  }

  .page-header {
    flex-wrap: nowrap;
    padding: 16px 15px !important;
  }

  .page-header .navbar-collapse {
    position: absolute;
    top: 100%;
    background: #fff;
    width: calc(100% + 0px);
    margin-left: -15px;
    padding: 20px 15px;
  }

  .page-header .navbar-collapse .btn-primary {
    margin-top: 15px;
    margin-left: 0px !important;
  }

  .navbar .navbar-collapse {
    display: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar .navbar-toggler.active+.navbar-collapse {
    display: block !important;
  }

  .navbar .navbar-collapse .dropdown-menu {
    padding: 0px;
  }

  .footer-wrapper img {
    width: 242px !important;
  }
}

@media (max-width: 767.98px) {


  /* page banner image */
  .hero-modern {
    background-image: url('../img/main-banner-mob.png');
  }

  .hero-healthcare {
    background-image: url('../img/banner-heath-care-provider-mob.png');
  }

  .hero-architect {
    background-image: url('../img/banner-arch-planners-mob.png');
  }

  .hero-supplier {
    background-image: url('../img/banner-supplier-mob.png');
  }

  .plan-advisor-banner {
    background-image: url('../img/plan-vise-image-mob.png');
  }

  .procure-assist-banner {
    background-image: url('../img/banner-procure-assit-mob.png');
  }

  /* page banner image */
  .procure-assist-banner #heroCarousel {
    padding: 0px;
  }

  .procure-assist-banner #heroCarousel h1 {
    word-break: break-all;
  }

  .procure-assist-banner #heroCarousel .carousel-item {
    height: auto;
  }

  .page-footer .footer-wrapper:nth-child(2) {
    margin-top: 24px;
  }

  .hero-content .demo-btn {
    height: auto;
    font-size: 14px !important;
    margin-top: 24px !important;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content .banner-fonts {
    margin-top: 24px;
    font-size: 20px;
  }

  .hero-content .banner-fonts span {
    font-size: 24px !important;
  }

  .common-banner-section {
    height: calc(100vh - 147px);
    background-position: 70% 100%;
  }

  .common-banner-section .btn {
    font-size: 14px !important;
  }

  .navbar-brand img {
    width: 154px;
  }

  .sticky-wrap {
    padding: 10px 15px;
    gap: 15px;
    justify-content: space-between;
  }

  .sticky-wrap h5 {
    margin: 0;
    font-size: 17px;
  }

  .sticky-wrap .btn {
    margin: 0px !important;
    height: auto;
  }

  .bg-appointment {
    margin-top: 0px !important;
  }

  .spinner-grow {
    width: 24px;
    height: 24px;
  }

  .appointment-action-btn .btn {
    margin: 0px !important;
    margin-bottom: 15px !important;
    min-width: 221px;
  }

  .appointment-action-btn .btn:last-child {
    margin-bottom: 0px !important
  }

  .footer-wrapper img {
    width: 172px !important;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 15px;
  }

  .footer-bottom-wrapper p {
    margin: 0px;
  }

  .footer-bottom-wrapper p:first-child {
    width: 100%;
  }

  .back-to-top {
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px !important;
  }

  .appointment-page .appointment-form {
    padding: 15px !important;
  }

  .appointment-newsletter {
    padding: 15px !important;
  }

  .appointment-newsletter .input-group {
    flex-direction: column;
    gap: 12px;
  }

  .appointment-newsletter .input-group .btn {
    width: 100%;
    padding: 16px 12px;
  }

  .appointment-newsletter .input-group .form-control {
    width: 100%;
  }
}


.home-product-card {
  transition: opacity 0s ease-in-out !important;
}

.home-product-card .overlay {
  transition: opacity 0s ease-in-out !important;
}