@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Poppins";
}
.rating-stars{
  display: flex !important;
  justify-content: center !important;
}
.navbar .navbar-brand span {
  color: rgb(255, 107, 71);
  font-weight: 700;

  font-size: 20px;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    background-color: #337d7c;
    border-color: #337d7c;
}
.provider-name{
  height: 180px; display: flex; align-items: center; text-align: center; justify-content: center;
}
.page-link{
  color: #337d7c;
}
.navbar .navbar-brand img {
  width: auto;
  height: calc(0.25rem * 10);
  border-radius: 0.75rem;
}
.navbar .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
.add-services-btn {
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-decoration: none;
  color: #fff;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  background-color: rgb(255, 107, 71);
  padding: 7px 10px;
  border-radius: 8.5px;
}
.add-services-btn svg {
  height: calc(0.25rem * 4);
  width: calc(0.25rem * 4);
  margin-right: calc(0.25rem * 2);
}
.navbar .nav-item:hover {
  background-color: #fef3c7;
  border-radius: 8.5px;
  transition: background-color 0.15s ease-in-out;
}
.navbar .nav-item:hover .nav-link {
  color: #f59e0b;
}
.navbar .nav-item.active {
  background-color: #fef3c7;
  border-radius: 8.5px;
}
.navbar .nav-item.active .nav-link {
  color: #f59e0b;
}

.register-btn:hover {
  color: #f59e0b;
  transition: all 0.15s ease-in-out;
  background-color: #fef3c7;
}
.register-btn {
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-decoration: none;
  color: #000;
  margin-right: 10px;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 8.5px;
}
.hero-section {
  padding: 4rem 0;
  /* background-image: linear-gradient(
    to bottom right in oklab,
    oklch(0.97 0.014 254.604) 0%,
    oklch(0.982 0.018 155.826) 50%,
    #0000 100%
  ); */
}
.hero-title {
  font-size: 44px;
  font-family: "Poppins";
  font-weight: 700;
}
.hero-title .highlight-orange {
  color: #ff6b47;
}
.hero-title .highlight-blue {
  color: #0072ff;
}
.hero-title .highlight-green {
  color: #337d7c;
}
.search-box {
  background: #fff;
  border: 3px solid #337d7c ;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stats-box div {
  text-align: center;
  background-color: transparent;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 180px;
  border-radius: 14.5px;
  border-radius: calc(0.75rem + 4px);
}
.stats-box p {
  margin-bottom: 0;
  font-size: 14px;
}
.stats-box h4 {
  font-weight: 700;
  margin-bottom: 0;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.icon-card {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: rgb(51, 125, 124);
  font-size: 1.5rem;

  /* shadow */
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

  /* bounce animation */
  animation-name: bounce;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-timing-function: ease;
}

/* Bounce keyframes (up–down) */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* stagger delays for each card */
.icon-card:nth-child(1) {
  animation-delay: 0s;
}
.icon-card:nth-child(2) {
  animation-delay: 0.2s;
}
.icon-card:nth-child(3) {
  animation-delay: 0.4s;
}
/* .icon-card:nth-child(4) { animation-delay: 0.6s; } */
.icon-card:nth-child(5) {
  animation-delay: 0.8s;
}
.icon-card:nth-child(6) {
  animation-delay: 1s;
}
.icon-card:nth-child(7) {
  animation-delay: 1.2s;
}
/* .icon-card:nth-child(8) { animation-delay: 1.4s; } */
.icon-card:nth-child(9) {
  animation-delay: 1.6s;
}


.hero-section .custom-badge {
  /* fallback colors first */
  color: #337d7c;
  border: 1px solid #ddd;
  background-color: #fff;

  /* OKLCH colors (for modern browsers) */
  color: #337d7c;


  font-size: 13px;
  font-weight: 600;
  border-radius: calc(0.75rem - 2px);
  width: fit-content;
  padding: 1.75px 7px;

  /* animation properties */
  animation-name: pulse;
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 2s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timeline: auto; /* experimental */
  animation-range-start: normal; /* experimental */
  animation-range-end: normal; /* experimental */
}

/* pulse animation */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.search-box .input-group-div {
  padding: 7px 6px;
  border-radius: 8.5px;
  background-color: #f8fafc;
  border: 2px solid #337d7c;
}
.search-box .input-group-div i {
  color: #337d7c;
  margin-left: 5px;
}

.search-box .input-group-div input {
  margin-left: 10px;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: transparent;
  color: #000;
}

.search-box .input-group-div.green {
  border: 2px solid #337d7c;
}
.search-box .input-group-div.green i {
  color: #337d7c;
}
.search-box .search-provider_btn {
  background-color: #337d7c;
  padding: 0 14px;
  min-height: 44px;
  font-size: 14px;
  border-radius: 14.5px;
  border: none;
  width: 100%;
  color: #fff;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  outline: none;
  transition: all 0.1s ease-in-out;
  margin-top: 6px;
}
.search-box .search-provider_btn:hover {
  scale: 1.03;
}
.hero-section .circle {
  opacity: 0.5;
  border-radius: 50%;
  position: absolute;

  /* realistic bounce animation */
  animation: bounce-ball 2s infinite;
}

/* specific circles */
.hero-section .circle.circle-1 {
  background-color: rgb(51, 125, 124);
  top: calc(0.25rem * 20);
  left: calc(0.25rem * 10);
  width: 70px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 70px;
  animation-delay: 0s;
}

.hero-section .circle.circle-2 { 
  background-color:rgb(51, 125, 124);
  right: calc(0.25rem * 20);
  top: calc(0.25rem * 42);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 55px;
  height: 55px;
  animation-delay: 0.4s;
}

.hero-section .circle.circle-3 {
background-color: rgb(51, 125, 124);
  right: calc(0.25rem * 6);
  bottom: calc(0.25rem * -6);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 44px;
  height: 44px;
  animation-delay: 0.8s;
}

/* realistic bouncing keyframes */
@keyframes bounce-ball {
  0% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1); /* fast fall */
  }
  30% {
    transform: translateY(60px) scale(1.1, 0.9); /* squash at bottom */
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* slow up */
  }
  50% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  70% {
    transform: translateY(30px) scale(1.05, 0.95); /* smaller bounce */
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  85% {
    transform: translateY(0) scale(1, 1);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}

.program-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.2s ease-in-out;
}
.program-card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.program-card img {
  width: 100%;
  height: 180px;
/*  object-fit: cover;
*/}
.card-badge {
  position: absolute;
  top: 12px;
  right: 5px;
  background:#337d7c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}
.card-body {
  padding: 16px;
  flex-grow: 1;
}
.program-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.rating {
  font-size: 15px;
  color: #444;
}
.rating i {
  color: #ffc107;
  margin-right: 4px;
}
.info {
  font-size: 14px;
  color: #555;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info i {
  color: #777;
}
.tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.tag-pink {
  background: #fde2e2;
  color: #d63384;
}
.tag-green {
  background: #d1f3d0;
  color: #1a7f37;
}
.tag-blue {
  background: #d2e4f8;
  color: #155fa0;
}
.tag-purple {
  background: #e9d9fb;
  color: #7a3db8;
}
.tag-orange {
  background: #ffe1c2;
  color: #d66a00;
}
.tag-red {
  background: rgb(255, 107, 71);
  color: #fff;
}
.tag-gray {
  background: transparent;
  border: 1px solid #ddd;
  color: #444;
}
.view-all-providers_btn {
  margin-top: 40px;
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
}
.view-all-providers_btn:hover {
  opacity: 0.7;
  transition: all 0.1s ease-in-out;
}
.card-footer {
  padding: 12px 16px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.btn-view:hover {
  opacity: 0.7;
  transition: all 0.1s ease-in-out;
}
.btn-compare:hover {
  background-color: #337d7c21;
  transition: all 0.1s ease-in-out;
}
.btn-compare {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
}
.btn-view {
  flex: 1;
  text-align: center;
  text-decoration: none;
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
}
.second-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #337d7c21;
}

.btn-compare.compare-btn.in-compare{
  font-size: 10px !important;
}

.sixth-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color:white;
}
section h3 {
  font-family: "Poppins";
  font-size: 31px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #000;
  text-align: center;
}
section .tagline {
  color: #64748b;
  text-align: center;

  font-size: 16px;
}

.third-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #337d7c21;
}

/* Container */
.edu-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.2s ease-in-out;
}
.edu-card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ddd;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image */
.edu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Top badge */
.edu-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #337d7c;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 14px;
}

/* Card body */
.edu-body {
  padding: 20px;
  flex-grow: 1;
}

.edu-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #00a3a3;
}

.edu-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}

.edu-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #e74c3c;
  margin-bottom: 14px;
}

.edu-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Tags */
.edu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.edu-tag {
  font-size: 12px;
  padding: 4px 12px;
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
}

/* Footer link */
.edu-footer:hover {
  color: #000;
  transition: all 0.1s ease-in-out;
  text-decoration: underline;
}
.edu-footer {
  font-size: 14px;
  font-weight: 600;
  color: #337d7c;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.edu-footer i {
  font-size: 14px;
}

.forth-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.city-card {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08); */
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  transition: transform 0.2s ease-in-out;
}

.city-card:hover {
  transform: translateY(-10px);
}

.city-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.city-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.city-link {
  color: rgb(255, 107, 71);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.city-link:hover {
  text-decoration: underline;
}

.city-families {
  font-size: 15px;
  color: #337d7c;
  font-weight: 600;
}

/* Different Background Colors for Icons */
.blue-bg {
  background: #1e90ff;
}
.green-bg {
  background: #337d7c;
}
.purple-bg {
  background: #a352ff;
}
.pink-bg {
  background: #f23b7f;
}
.orange-bg {
  background: #ff7300;
}
.yellow-bg {
  background: #ffc04d;
}

/* Coming Soon Section */
.coming-soon {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ff5a00;
}

.soon-card {
  width: 220px;
  height: 220px;
  border: 2px dashed rgb(255, 107, 71);
  border-radius: 20px;
  background: #fff;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 15px auto;
}

.soon-card-title {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 107, 71);
  margin-bottom: 10px;
}

.soon-badge {
  font-size: 12px;
  padding: 4px 12px;
  background-color: rgb(255, 107, 71);
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
}

/* Request Section */
.request-city {
  margin-top: 20px;
  font-size: 16px;
  color:#64748b;
  font-weight: 500;
}

.request-btn {
  margin-top: 15px;
  background: #337d7c;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  border: none;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.request-btn:hover {
  background: #009d85;
}

@media (max-width: 768px) {
  .add-services-btn {
    font-size: 10px !important;
  }
  .register-btn {
    font-size: 10px !important;
  }
  .find-provider-page .site-header {flex-wrap: wrap;}
  .find-provider-page .left-head {flex-direction: column;}
  p {
    font-size: 14px !important;
  }
  .how-it-works-card {
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 35px !important;
  }
  .forth-section .container div {
    flex-wrap: wrap;
    gap: 0px !important;
  }
  .forth-section .container div.col-md-2 {
    width: 100% !important;
  }

  .city-card,
  .soon-card {
    width: 180px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .city-card,
  .soon-card {
    width: 100%;
    height: auto;
  }
}

footer {
  background-color: #0d1423;
  padding: 50px 0 30px;
  color: #eaeaea;
}

.footer-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-subscribe input {
  background-color: #182236;
  border: none;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: #9ba8b8;
}

.footer-subscribe button {
  background-color: #337d7c;
  color: #fff;
  font-weight: 500;
  border: none;
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.footer-subscribe button:hover {
  background-color: #27b8af;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #9ba8b8;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: #3ad7cc;
}

.footer-links p {
  color: #9ba8b8;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-social a {
  display: inline-block;
  font-size: 16px;
  color: #9ba8b8;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
  color: #3ad7cc;
}

.footer-bottom {
  text-align: center;
  color: #808c9f;
  font-size: 13px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .footer-subscribe {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  footer {
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px 10px;
  }

  .footer-social {
    margin-top: 15px;
  }
}
.fifth-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color:#337d7c21;
}

.how-it-works-section {
  background-color: #fffdf6;
  padding: 60px 0;
}

.how-it-works-card {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.how-it-works-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.how-it-works-card h3 {
  font-family: "inter";
}

.how-it-works-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #337d7c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.how-it-works-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #e6f8f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 20px;
}

.how-it-works-icon-wrapper i {
  font-size: 26px;
  color: #337d7c;
}

.how-it-works-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
  margin-bottom: 12px;
}

.how-it-works-description {
  font-size: 15px;
  color: #4f5d75;
  line-height: 1.6;
  margin: 0;
}

.sixth-section {
  padding-top: 60px;
  background-color: #fff;
  padding-bottom: 60px;
}
.p1-button {
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}
.seventh-section {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.custom-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.custom-card:hover {
  transform: translateY(-4px);
}
.custom-card-image {
  width: 100%;
  height: 170px;
  background-color: #337d7c21;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.custom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-card-body {
  padding: 20px;
  flex-grow: 1;
}
.custom-card-title {
  font-size: 16px;
  font-weight: 600;
  font-family: "inter";
  margin-bottom: 12px;
  text-align: start;
  color: #000;
}
.custom-card-text {
  font-size: 14px;
  color: rgb(100, 116, 139);
  margin-bottom: 16px;
  line-height: 1.5;
}
.custom-card-link {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}
.custom-card-link i {
  margin-left: 6px;
  font-size: 14px;
}

.testimonial-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #337d7c21;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #337d7c21;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.testimonial-location {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.testimonial-stars {
  color: #fbbc05;
  margin-bottom: 12px;
  font-size: 22px;
}
.testimonial-text {
  font-size: 14px;
  color: rgb(100, 116, 139);
  font-style: italic;
  line-height: 1.6;
}
.cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(to right, #337D7C, #0F464D);

  color: #fff;
}
.cta-section h3,
.cta-section p {
  color: #fff;
}
.cta-section .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.cta-section button {
  color: #337d7c;
  font-size: 14px;
  font-weight: 600;

  background: #fff;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 8px;
  padding: 8px 12px;
}

:root {
  --accent: #337d7c;
  --accent-2: #22c55e;
  --muted: #64748b;
  --card-bg: #fff;
  --page-bg: #f6faf8;
  --radius: 12px;
}
body.find-provider-page {
  margin: 0;

  /* background: var(--page-bg); */
  color: #000;
  padding: 20px;
  padding-top: 0 !important;
}

/* HEADER */
.find-provider-page .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  /* border-bottom: 1px solid #ddd; */
  padding-bottom: 0px;
  margin-bottom: 18px;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;

}
.find-provider-page .left-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.find-provider-page .back-btn {
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  align-items: center;
  font-weight: 600;
}
.find-provider-page .brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.find-provider-page .logo {
  width: auto;
  height: calc(2.5rem);
  border-radius: 0.375rem;
}
.find-provider-page .brand-title {
  color: #ef6950;
  font-weight: 800;
}
.find-provider-page .tagline {
  color: var(--muted);
  font-size: 13px;
}

.find-provider-page .header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.compare-count-badge{
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
background: rgb(255, 107, 71);
color: #fff !important;
}

.find-provider-page .pill {
font-size: 13px;
cursor: pointer;
color: #000;
font-weight: 600;
}
.find-provider-page .pill i{
  font-size: 16px;
}

/* LAYOUT */
.find-provider-page .layout-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.find-provider-page .left-col {
  width: 260px;
  flex-shrink: 0;
}
@media only screen and (min-width:1300px){
  .find-provider-page .left-col {width: 320px !important;}
}
.find-provider-page .right-col {
  flex: 1;
}

.find-provider-page .filter-sidebar {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
  border: 1px solid #eef2f4;
}
.find-provider-page .filter-sidebar  label{
  font-size: 14px;
  font-weight: 400;
}.find-provider-page .filter-sidebar select{
  font-size: 14px;
}

.service-filter-title{
  font-size: 16px !important;
  margin-bottom: 10px !important;
  color: #000 !important;
  font-weight: 600 !important;
}
.find-provider-page .input-ghost {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6eef0;
  background: #fbfeff;
  margin-bottom: 10px;
  outline: none;
  font-size: 14px;
}

.find-provider-page h6.filter-title {
  font-size: 14px;
  margin: 12px 0 6px;
  color: #374151;
}

/* custom single-thumb slider style: distance + rating */
.find-provider-page input[type="range"].custom {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #337d7c 50%, #d1d5db 50%);
  outline: none;
}
.find-provider-page input[type="range"].custom::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 2px solid #fff;
  margin-top: -4px;
}
.find-provider-page input[type="range"].custom::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 2px solid #fff;
}
/* We will update background with JS to show filled portion */

/* providers header */
.find-provider-page .providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.find-provider-page .providers-left {
  font-weight: 700;
  font-size: 18px;
}
.find-provider-page .controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.find-provider-page .layout-toggle {
  display: flex;

}
.find-provider-page .layout-toggle button {
  border: 0;
  padding: 8px 10px;
  background: transparent;
  cursor: pointer;
  border-radius: calc(.75rem - 2px);
  border: 1px solid #94a3b833;
  display: inline-flex;
  align-items: center;
  outline: none;
  gap: 6px;
}
.find-provider-page .layout-toggle button i{
  font-size: 16px;
}
.find-provider-page .layout-toggle button:nth-child(1){
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

}
.find-provider-page .layout-toggle button:nth-child(2){
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

}
.find-provider-page .layout-toggle button.active {
  background: var(--accent);
  color: #fff;
}

/* cards grid */
.find-provider-page .cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .find-provider-page .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .find-provider-page .layout-row {
    flex-direction: column;
  }
  .find-provider-page .left-col {
    width: 100%;
  }
  .find-provider-page .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* .find-provider-page .provider-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef2f4;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.03);
  height: 100%;
}
.find-provider-page .provider-media {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.find-provider-page .provider-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fb7185;
}
.find-provider-page .provider-check {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

.find-provider-page .card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: space-between;
}
.find-provider-page .card-title {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.find-provider-page .meta-row {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.find-provider-page .tag-list {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.find-provider-page .tag {
  background: #f1f5f9;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  color: #111827;
}

.find-provider-page .card-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.find-provider-page .btn-ghost {
  flex: 1;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
}
.find-provider-page .btn-primary {
  flex: 1;
  padding: 9px 12px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.find-provider-page .btn-added {
  opacity: 0.7;
  cursor: not-allowed;
} */

/* list mode */
.find-provider-page .list-mode .cards-grid {
  display: flex;
  flex-direction: column; /* keeps cards stacked vertically */
  gap: 1rem; /* spacing between cards */
}

.find-provider-page .list-mode .provider-card {
  display: flex; /* horizontal layout for each card */
  flex-direction: column;
  min-height: 150px;
  border: 1px solid #ddd; /* optional for clarity */
  border-radius: 6px;
  overflow: hidden;
}

.find-provider-page .list-mode .provider-media {
  width: 100%;
  height: 250px;
  border-radius: 0;
  flex-shrink: 0; /* prevent shrinking */
  object-fit: cover; /* makes image fill nicely */
}
  

/* Enhanced comparison bottom bar */
.compare-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: -60vh; /* hidden initially - increased for full cards */
  background: linear-gradient(180deg, #fff, #fbfffb);
  border-radius: 12px 12px 0 0;
  padding: 16px;
  box-shadow: 0 -10px 30px rgba(10, 20, 30, 0.12);
  border: 1px solid #e6efe8;
  border-bottom: none;
  transition: bottom 320ms cubic-bezier(0.2, 0.9, 0.25, 1);
  z-index: 9999;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-bar.open {
  bottom: 0;
}
.alert-error{
  background: red;
}

.compare-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f4;
}
.compare-item img{
  width: 100px;
}

.find-provider-page .compare-title {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.find-provider-page .compare-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  flex: 1;
  padding: 8px 0;
}

.find-provider-page .compare-card {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef2f4;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
height: fit-content;
}

.find-provider-page .compare-card-media {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.find-provider-page .compare-card-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  background: #fb7185;
}

.find-provider-page .compare-remove {
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #ef4444;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.find-provider-page .compare-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.find-provider-page .compare-card-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.find-provider-page .compare-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 6px;
}

.find-provider-page .compare-meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 6px;
}

.find-provider-page .compare-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 8px;
}

.find-provider-page .compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.find-provider-page .compare-tag {
  background: #f1f5f9;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 10px;
  color: #374151;
}

.find-provider-page .compare-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  padding-top: 12px;
  justify-content: center;
  border-top: 1px solid #eef2f4;
}
.compare-final-btn {
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
}
.compare-clear {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
}

/* small text */
.find-provider-page .small-muted {
  color: var(--muted);
  font-size: 13px;
}

/* highlight effect */
.find-provider-page .highlight {
  animation: highlightPulse 1.5s ease-in-out;
}

@keyframes highlightPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.03);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(46, 143, 130, 0.15);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .find-provider-page .providers-header{
    flex-wrap: wrap;
  }
  .compare-bar {
    left: 10px;
    right: 10px;
    max-height: 70vh;
  }

  .find-provider-page .compare-card {
    min-width: 250px;
  }
}
.noUi-connect {
  background: #337d7c !important;
}

.school-profile-section-main-wrapper {
  padding: 40px;
}
.school-profile-image-gallery-container {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.school-profile-main-image-large {
/*  width: 100%;
*/  height: 360px;
  border-radius: 16px;
}
.school-profile-thumbnail-gallery-row {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}
.school-profile-thumbnail-small-image {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s;
}
.school-profile-thumbnail-small-image:hover {
  opacity: 1;
  transform: scale(1.05);
}
.school-information-detail-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #ddd;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.school-information-badge-category {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  width: fit-content;
  white-space: nowrap;
  background-color: rgb(255, 107, 71);
  color: #fff;
}
.school-information-name-heading {
  font-size: 18px;
  font-weight: 700;
}
.school-rating-wrapper {
  display: flex;
  align-items: center;
  margin: 6px 0 12px;
}
.school-rating-wrapper i {
  color: #fbbc04;
  margin-right: 5px;
}
.school-address-phone-line,
.school-website-line,
.school-timing-line,
.school-fees-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}
.school-address-phone-line i,
.school-website-line i,
.school-timing-line i,
.school-fees-line i {
  margin-right: 8px;
  color: #555;
}
.school-timing-status-green {
  color: green;
  font-weight: bold;
  margin-left: 8px;
}
 
.school-add-to-compare-btn:hover{
  opacity: .8;
}

.school-add-to-compare-btn {
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  width: 100%;
  font-weight: 500;
}
.image-side-icon{
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-side-icon i{
  font-size: 23px;
}
.school-action-info-parent .school-action-info{
  display: flex;
  justify-content: normal;
  align-items: center;
  margin-bottom: 8px;
}
.school-action-info-parent .school-action-info .icon i{
margin-right: 10px;
color: #64748b;
font-size: 18px;
}
.school-action-info-parent .school-action-info p.link{
  text-align: underline;
  color: #337d7c;
  cursor: pointer;
}
.school-action-info-parent .school-action-info p{
  margin-bottom: 0;
font-size: 14px;
font-weight: 500;
color: #000;
}
.school-action-info-parent .school-action-info span{
  font-size: 12px;
  color: #64748b;
}
.school-action-buttons-row {

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.school-action-buttons-row button{
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
 width: 49%;
  
}
.school-action-buttons-row button:nth-child(2){
  border: 1px solid #ddd;
  background-color: #fff;
  color: #000;
}
.school-lower-action-buttons button{
  background: #fff;
  color: #000;

  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  flex: 1;
}
.school-lower-action-buttons{
  display: flex;
  gap: 6px;
  justify-content: normal;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.quick-action-card_detail-page{
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #ddd;
  margin-top: 30px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}
.quick-action-card_detail-page h6{
  font-size: 20px;
  font-weight: 600;
}
.quick-action-card_detail-page .quick-actions-item-parent{
  margin-top: 25px;
}
.quick-action-card_detail-page .quick-actions-item-parent .quick-action-item:hover{
  color: #f59e0b;
  transition: all .1s ease-in-out;
  background-color: #fef3c7;
}
.quick-action-card_detail-page .quick-actions-item-parent .quick-action-item{
  border: 1px solid #ddd;
  width: 100%;
  cursor: pointer;
  font-weight: 500;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 8px;
  font-size: 12px;
}
.quick-action-card_detail-page .quick-actions-item-parent .quick-action-item i{
  margin-right: 10px;
  font-size: 14px;
}


.school-updates-card,
.school-about-card,
.school-services-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;

}
.school-update-item {
  margin-bottom: 20px;
}
.school-update-title {
  font-weight: bold;
  font-size: 16px;
}
.school-update-meta {
  font-size: 13px;
  color: #666;
}
.school-about-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.school-about-stats-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px;
}
.school-about-stats-box i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #337d7c;
}
.school-service-badge i{
margin-right: 5px;
}
.school-service-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 5px;
  color: #000;
  font-weight: 400;
  font-size: 13px;
}
.school-tab-navigation-container {
  border-radius: 14.5px;
  background: #337d7c;
  padding: 6px 10px;
  display: flex;
  
  /* gap: 20px; */
  justify-content: normal;
  margin-bottom: 20px;
  margin-top: 25px;
  width: 100%;
}

.school-tab-navigation-container .nav-link {
  border-radius: 14.5px;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 26px;
  flex: 1;
  color: #fff;
  width: 100%;
}
.school-tab-navigation-container .nav-link.active {
  background: #fff;

  color: #000;
}
.provider-detail-tab-content-card-title{
  font-weight: 600;
  margin-bottom: 20px;
}
#schoolTabsContent .badge{
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 16px;
  color: #000;
  background-color: #fff !important;
  padding: 4px 10px;
}


.long-keyword-rating-container-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.long-keyword-rating-score-big {
  font-size: 48px;
  font-weight: bold;
}
.long-keyword-star-icon {
  color: #f5b50a;
  font-size: 22px;
}
.long-keyword-progress-bar {
  height: 6px;
  border-radius: 4px;
  background: #e6f0ee;
}
.long-keyword-progress-bar-fill {
  background: #337d7c;
}
.long-keyword-review-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
.long-keyword-review-box p{
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
}
.long-keyword-review-reply {
  background: #f0faff;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
}
.long-keyword-hours-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.long-keyword-hours-box .open-now-area{
  font-size: 12px;
}

.long-keyword-hours-box .open-now-area{
background-color: oklch(.982 .018 155.826);
padding: 10px;
border-radius: 8px;
border: 1px solid #00b86b;
}
.long-keyword-hours-day {
  font-weight: 600;
  margin-bottom: 20px;
}
.long-keyword-open-status {
  color: green;
  font-weight: 600;
}
.long-keyword-amenity-active i {
  color:oklch(.627 .194 149.214) ;
}
.long-keyword-amenities-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.long-keyword-amenity-active {
  background: #e8fff0;
  border: 1px solid #b3f0cc;
  padding: 10px;
  font-size: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.long-keyword-review-box a{
  color: #000;
  font-weight: 500;
  text-decoration:none ;
  font-size: 13px;
}
.long-keyword-review-box a i{
  margin-right: 6px;
}
.long-keyword-amenity-inactive {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}
.provider-detail-images-parent{
  display: flex;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}
.provider-detail-images-parent img{
  object-fit: cover;
  border-radius: 8px;
  height: 180px;
  width: 180px;
  cursor: pointer;
}
.provider-detail-images-parent img:hover{
  transform: scale(1.02);
  transition: all .1s ease-in-out;
}
.master-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1719834826635-742c7a986716?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxzYWZlJTIwc2Nob29sJTIwYnVpbGRpbmclMjBleHRlcmlvcnxlbnwxfHx8fDE3NTY5NzAyMjB8MA&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral') 
    no-repeat center center/cover;
  min-height:400px; 
  display: flex;
  
  align-items: center;
  justify-content: center;
  color: #fff; /* text white so contrast ache se aaye */
  z-index: 1;
}
.for-providers-hero-section{
  min-height:400px; 
  display: flex;
  
  align-items: center;
  justify-content: center;
  color: #000;
}

.master-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: -1;
}
.master-section h1{
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  line-height: 70px;
}
.for-providers-hero-section h1{
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  line-height: 70px;
}



/* Container */
.comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
}

/* Table Header */
.comparison thead th {
  background: #337d7c;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  border-bottom: 2px solid #e5e7eb;
  color: #fff;
}

/* Table Cells */
.comparison td {
  padding: 14px;
  font-size: 14px;
  text-align: center;
  border-bottom: 2px solid #f1f5f9;
  vertical-align: middle;
  color: #475569;
}

/* First Column (Features) */
.comparison td:first-child,
.comparison thead th:first-child {
  font-weight: 600;
  text-align: left;
  background: #337d7c;
  color: #fff;
  width: 180px;
}

/* Provider Logo */

.provider-logo img{
width: 60px;
height: 60px;
border-radius: 12px;
object-fit: cover;
margin-bottom: 10px;
}
  /* Actions buttons row */
.comparison .actions button {
border: 1px solid #ddd;
padding: 4px 20px;
font-size: 13px;
background-color: #fff;
border-radius: 14px;
}
.comparison .actions button:hover {
  background-color: #337d7c21;
}


/* Responsive (mobile cards) */
@media (max-width: 768px) {
  .master-section {padding-bottom: 20px;}
  .master-section h1{font-size: 32px !important;line-height: 40px !important;text-align: start !important;}
  .comparison thead {
    display: none;
  }

  .comparison tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .comparison td {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .comparison td:last-child {
    border-bottom: none;
  }

  .comparison td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #111827;
  }
}



.fifth-section.for-providers .how-it-works-card{
  height: 100%;
}
.fifth-section.for-providers button{
  background: #337d7c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

/* Section wrapper */


/* Container */
.about-askroro-container-outer {

  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;

}

/* Headings area */
.about-askroro-heading-area {
  text-align: center;
  margin-bottom: 30px;
}

.about-askroro-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.about-askroro-subtitle-line {
  font-size: 18px;
  color: #4b5563;
  font-weight: 500;
}

/* Intro text */
.about-askroro-introduction-text-area {
  margin-bottom: 30px;
}

.about-askroro-introduction-paragraph {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Story section */
.about-askroro-story-wrapper {
  margin-bottom: 35px;
}

.about-askroro-story-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-askroro-story-paragraph {
  font-size: 16px;
  margin-bottom: 14px;
  color: #374151;
}

/* Story bullet list */
.about-askroro-story-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-askroro-story-bullet-item {
  background: #fff;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  transition: 0.2s;
}

.about-askroro-story-bullet-item:hover {
  background: #f0f7ff;
  border-color: #c7d2fe;
}

/* Mission section */
.about-askroro-mission-wrapper {
  margin-bottom: 35px;
}

.about-askroro-mission-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.about-askroro-mission-paragraph {
  font-size: 16px;
  margin-bottom: 16px;
  color: #374151;
}




.about-askroro-promise-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.about-askroro-promise-bullet-item {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #374151;
}

.about-askroro-promise-bullet-item::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #00bfa6;
  font-size: 14px;
}

.about-askroro-promise-paragraph {
  font-size: 16px;
  color: #374151;
  margin-top: 40px;

}


.faq-page-main-heading-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #2a2d34;
}
.faq-accordion-section-container {
  max-width: 950px;
  margin: auto;
  margin-bottom: 40px;
}
.faq-accordion-item-longkeywordclass {
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-accordion-header-longkeywordclass button {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 20px;
  color: #2a2d34;
}
.faq-accordion-header-longkeywordclass button:focus {
  box-shadow: none;
}
.faq-accordion-body-longkeywordclass {
  padding: 20px;
  font-size: 0.95rem;
  color: rgb(100, 116, 139);
  line-height: 1.6;
}
.faq-category-title-longkeywordclass {
  font-size: 24px;
  font-weight: 700;
  margin: 25px 0 15px;
  margin-bottom: 20px;
  color:#000;
}
.accordion-button:not(.collapsed){
    background-color: #337d7c;
    color: #fff;
}

.cookie-banner {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  z-index: 9999;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

    /* Modal Wrapper */
    .askroro-modal-overlay {
      background: rgba(0, 0, 0, 0.5);
      z-index: 1050;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      overflow-x: hidden; overflow-y: auto;
      display: none;
    }
    .askroro-modal-overlay.show { display: block !important; }

    .askroro-modal-dialog {
      margin: 1.75rem auto;
      max-width: 530px;
      width: 100%;
      max-height: calc(100vh - 3.5rem);
      display: flex;
      align-items: center;
      min-height: calc(100vh - 3.5rem);
      padding: 0 15px;
    }

    .askroro-modal-content {
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
      position: relative;
      background: white;
      width: 100%;
      max-height: calc(100vh - 3.5rem);
      overflow-y: auto;
    }

    /* Close Button */
    .askroro-btn-close {
      position: absolute;
      top: 16px; right: 16px;
      background: none;
      border: none;
      font-size: 24px;
      color: #999;
      cursor: pointer;
      z-index: 10;
    }
    .askroro-btn-close:hover { color: #666; }

    /* Avatar */
    .askroro-avatar-box { display: flex; justify-content: center; margin-bottom: 16px; }
    .askroro-avatar {
      width: 75px; height: 75px;
      background: linear-gradient(135deg, #ff7b7b, #ff6b35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }

    .askroro-avatar img{
height: 45px;
border-radius: 8px;
width: 45px;
    }
    .askroro-avatar-icon { color: #ffd700; font-size: 18px; }
    .askroro-avatar-user { color: white; font-size: 24px; }

    /* Modal Header */
    .askroro-modal-header { text-align: center; padding: 30px 30px 0; border: none; }
    .askroro-modal-title { font-size: 22px; font-weight: 600; color: #2d3748; margin-bottom: 6px; }
    .askroro-modal-subtitle { color: #718096; font-size: 15px; line-height: 1.4; }

    /* Body */
    .askroro-modal-body { padding: 24px 30px 30px; }

    /* Form */
    .askroro-form-group { margin-bottom: 16px; text-align: left; }
    .askroro-form-label { display: block; font-weight: 600; color: #2d3748; margin-bottom: 6px; font-size: 13px; }
    .askroro-form-control {
      width: 100%; padding: 10px 14px;
      border: 2px solid #e2e8f0; border-radius: 6px;
      font-size: 15px; background: #f7fafc;
      transition: all 0.2s ease;
    }
    .askroro-form-control:focus {
      outline: none; border-color: #3182ce; background: white;
      box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
    }

    .askroro-input-icon-wrapper { position: relative; }
    .askroro-input-icon-wrapper .askroro-form-control { padding-left: 44px; }
    .askroro-input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #a0aec0; }
    .askroro-btn-password-toggle {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: #a0aec0; cursor: pointer; font-size: 16px;
    }

    /* Name Row */
    .askroro-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Buttons */
    .askroro-btn-option {
      width: 100%; padding: 16px 20px;
      border: 2px solid #e2e8f0; border-radius: 6px;
      background: white; color: #2d3748;
      font-size: 16px; font-weight: 500; margin-bottom: 16px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .askroro-btn-option:hover { border-color: #cbd5e0; background: #f7fafc; }

    .askroro-btn-primary {
      width: 100%; background: #319795; border: none;
      border-radius: 6px; padding: 14px;
      color: white; font-size: 16px; font-weight: 600; margin-top: 8px;
    }
    .askroro-btn-primary:hover { background: #2c7a7b; }

    /* Links */
    .askroro-link-back { color: #718096; font-size: 14px; display: inline-block; margin-bottom: 16px; }
    .askroro-link-back:hover { color: #4a5568; text-decoration: underline; }

    .askroro-link { color:  rgb(51, 125, 124) !important; font-weight: 500;text-decoration: none; }
    .askroro-link:hover { color: #2c5282; text-decoration: underline; }

    .askroro-text-muted { color: #718096; }
    .askroro-forgot-password { text-align: right; margin-top: 8px; }

    .askroro-text-center { text-align: center; }

    /* Responsive */
    @media (max-width:768px) {
      .askroro-hero-section h1 { font-size: 2.5rem; }
      .askroro-hero-section p { font-size: 1.1rem; }
      .askroro-modal-dialog { margin: 10px; }
      .askroro-name-row { grid-template-columns: 1fr; }
    }
    @media (max-width:480px) {
      .askroro-hero-section h1 { font-size: 2rem; }
      .askroro-hero-section p { font-size: 1rem; }
      .askroro-modal-dialog { margin: 8px; }
    }


    .service-listing-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1050;
      display: none;
      backdrop-filter: blur(4px);
  }

  .service-listing-modal-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 20
      px;
      width: 90%;
      max-width: 70%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      z-index: 1051;
  }

  .service-listing-modal-header {
      background:var(--primary-color);
      color: white;
      padding: 1.5rem;
      border-radius: 20px 20px 0 0;
      position: relative;
  }

  .service-listing-modal-close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
  }

  .service-listing-modal-close-btn:hover {
      background: rgba(255,255,255,0.2);
  }

  .service-listing-modal-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 0;
  }

  .service-listing-modal-subtitle {
      opacity: 0.9;
      margin: 0.5rem 0 0 0;
      font-size: 1rem;
  }

  .service-listing-step-indicator-container {
      background: var(--light-gray);
      padding: 2rem 1.5rem 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .service-listing-step-indicator-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: not-allowed;
      opacity: 0.5;
      transition: all 0.3s ease;
  }

  .service-listing-step-indicator-item.service-listing-step-active {
      opacity: 1;
  }

  .service-listing-step-indicator-item.service-listing-step-completed {
      opacity: 1;
  }

  .service-listing-step-indicator-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.9rem;
      border: 2px solid var(--medium-gray);
      background: white;
      color: var(--medium-gray);
      transition: all 0.3s ease;
  }

  .service-listing-step-indicator-item.service-listing-step-active .service-listing-step-indicator-circle {
      background:rgb(255, 107, 71);
      border-color:rgb(255, 107, 71);
      color: white;
  }

  .service-listing-step-indicator-item.service-listing-step-completed .service-listing-step-indicator-circle {
      background: var(--success-color);
      border-color: var(--success-color);
      color: white;
  }

  .service-listing-step-indicator-label {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark-gray);
      display: none;
  }

  .service-listing-step-connector {
      width: 60px;
      height: 2px;
      background: var(--medium-gray);
      opacity: 0.3;
  }

  .service-listing-step-content-area {
      padding: 2rem 1.5rem;
      min-height: 400px;
  }

  .service-listing-step-content-panel {
      display: none;
  }

  .service-listing-step-content-panel.service-listing-step-active-content {
      display: block;
      animation: service-listing-fade-in 0.3s ease-in-out;
  }

  @keyframes service-listing-fade-in {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
  }

  .service-listing-step-title-text {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--dark-gray);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .service-listing-step-title-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
  }

  .service-listing-step-description-text {
      color: var(--medium-gray);
      margin-bottom: 2rem;
      line-height: 1.6;
  }

  .service-listing-form-group-container {
      margin-bottom: 1.5rem;
  }

  .service-listing-form-label-text {
      display: block;
      font-weight: 500;
      color: var(--dark-gray);
      margin-bottom: 0.5rem;
  }

  .service-listing-required-field-indicator {
      color: var(--accent-color);
      margin-left: 4px;
  }

  .service-listing-form-input-field,
  .service-listing-form-select-field,
  .service-listing-form-textarea-field {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
  }

  .service-listing-form-input-field:focus,
  .service-listing-form-select-field:focus,
  .service-listing-form-textarea-field:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 3px rgba(92, 179, 204, 0.1);
  }

  .service-listing-form-input-field.service-listing-input-error,
  .service-listing-form-select-field.service-listing-input-error,
  .service-listing-form-textarea-field.service-listing-input-error {
      border-color: var(--accent-color);
      background: rgba(255, 107, 90, 0.05);
  }

  .service-listing-error-message-text {
      color: var(--accent-color);
      font-size: 0.85rem;
      margin-top: 0.5rem;
      display: none;
  }

  .service-listing-checkbox-group-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
  }

  .service-listing-checkbox-item-wrapper {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: white;
  }

  .service-listing-checkbox-item-wrapper:hover {
      border-color: var(--secondary-color);
      background: rgba(92, 179, 204, 0.05);
  }

  .service-listing-checkbox-item-wrapper.service-listing-checkbox-selected {
      border-color: var(--secondary-color);
      background: rgba(92, 179, 204, 0.1);
  }

  .service-listing-modal-footer-actions {
      background: var(--light-gray);
      padding: 1.5rem;
      border-radius: 0 0 20px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .service-listing-navigation-button {
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
  }

  .service-listing-prev-button {
      background: white;
      color: var(--medium-gray);
      border: 2px solid #e9ecef;
  }

  .service-listing-prev-button:hover:not(:disabled) {
      background: var(--light-gray);
      border-color: var(--medium-gray);
  }

  .service-listing-next-button {
      background: var(--primary-color);
      color: white;
      border: 2px solid transparent;
  }

  .service-listing-next-button:hover:not(:disabled) {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(92, 179, 204, 0.3);
  }

  .service-listing-navigation-button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none !important;
  }

  .service-listing-file-upload-area {
      border: 2px dashed #e9ecef;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fafbfc;
  }

  .service-listing-file-upload-area:hover {
      border-color: var(--secondary-color);
      background: rgba(92, 179, 204, 0.05);
  }

  .service-listing-file-upload-area.service-listing-dragover {
      border-color: var(--secondary-color);
      background: rgba(92, 179, 204, 0.1);
  }

  .service-listing-upload-icon {
      font-size: 3rem;
      color: var(--medium-gray);
      margin-bottom: 1rem;
  }

  .service-listing-upload-text {
      color: var(--medium-gray);
      font-size: 1.1rem;
  }

  .service-listing-uploaded-files-list {
      margin-top: 1rem;
  }

  .service-listing-uploaded-file-item {
      background: white;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 0.5rem;
      display: flex;
      justify-content: between;
      align-items: center;
  }

  .service-listing-review-section-container {
      background: var(--light-gray);
      border-radius: 15px;
      padding: 1.5rem;
      margin-bottom: 1rem;
  }

  .service-listing-review-section-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--dark-gray);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .service-listing-review-field-row {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .service-listing-review-field-row:last-child {
      border-bottom: none;
  }

  .service-listing-review-field-label {
      font-weight: 500;
      color: var(--medium-gray);
  }

  .service-listing-review-field-value {
      color: var(--dark-gray);
      font-weight: 500;
  }

  @media (max-width: 768px) {
      .service-listing-hero-title {
          font-size: 2rem;
      }
      
      .service-listing-step-indicator-container {
          gap: 0.5rem;
      }
      
      .service-listing-step-connector {
          width: 30px;
      }
      
      .service-listing-step-indicator-circle {
          width: 35px;
          height: 35px;
          font-size: 0.8rem;
      }
      
      .service-listing-modal-container {
          width: 95%;
          margin: 1rem;
      }
      
      .service-listing-step-content-area {
          padding: 1rem;
      }
      
      .service-listing-checkbox-group-container {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 576px) {
      .service-listing-step-connector {
          display: none;
      }
      
      .service-listing-modal-footer-actions {
          flex-direction: column;
          gap: 1rem;
      }
      
      .service-listing-navigation-button {
          width: 100%;
      }
  }
  :root {
    --primary-color: #337d7c;
    --secondary-color: #5cb3cc;
    --accent-color: rgb(255, 107, 71);
    --success-color: #7bc043;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
}
#step4Content h6
{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.serviceflow-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.text-teal {
  color: #000;
}
.askroro-footer-section {

  font-size: 15px;
}
.askroro-footer-logo {
  width: 45px;
  height: 50px;
  border-radius: 8px;
}
.askroro-footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(100, 116, 139);
}
.askroro-footer-links li {
  margin-bottom: 10px;
}
.askroro-footer-links li a{
  color: rgb(100, 116, 139);
}

.askroro-footer-social a {
  font-size: 18px; 
  color: rgb(100, 116, 139);
  transition: color 0.3s ease;
}

.serviceflow-modal-overlay.show {
  display: flex;
}
.askroro-footer-title{
  color: rgb(255, 107, 71) !important;
}
.askroro-footer-bottom{
  color: rgb(100, 116, 139);
}
.serviceflow-modal-dialog {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
      opacity: 0;
      transform: translateY(-20px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

.serviceflow-modal-content {
  padding: 0;
}

.serviceflow-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.serviceflow-btn-close:hover {
  background: #e9ecef;
  color: #212529;
}

.serviceflow-modal-header {
  text-align: center;
  padding: 40px 40px 20px;
  background: #337d7c; /* ✅ REPLACED */
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.serviceflow-avatar-box {
  margin-bottom: 20px;
}

.serviceflow-avatar {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.serviceflow-avatar img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.serviceflow-modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.serviceflow-modal-subtitle {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 400;
  color: #fff;
}

.serviceflow-modal-body {
  padding: 40px;
  background: #fff;
}

.serviceflow-step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.serviceflow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.serviceflow-step.active {
  background: #337d7c; /* ✅ REPLACED */
  color: #fff;
  box-shadow: 0 4px 12px rgba(51, 125, 124, 0.3); /* ✅ Updated shadow to match */
}

.serviceflow-step.completed {
  background: #337d7c;
  color: #fff;
}

.serviceflow-step-content {
  display: none;
}

.serviceflow-step-content.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.serviceflow-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.serviceflow-category-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.serviceflow-category-card:hover {
  border-color: #337d7c; /* ✅ REPLACED */
  box-shadow: 0 8px 25px rgba(51, 125, 124, 0.15); /* ✅ Updated shadow */
  transform: translateY(-2px);
}

.serviceflow-category-card.selected {
  border-color: #337d7c; /* ✅ REPLACED */
  background: rgba(51, 125, 124, 0.05); /* ✅ Updated background tint */
  box-shadow: 0 8px 25px rgba(51, 125, 124, 0.2); /* ✅ Updated shadow */
}

.serviceflow-category-icon {
  width: 60px;
  height: 60px;
  background: #337d7c; /* ✅ REPLACED */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
}

.serviceflow-category-title {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.serviceflow-category-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

.serviceflow-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.serviceflow-pricing-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.serviceflow-pricing-card:hover {
  border-color: #337d7c; /* ✅ REPLACED */
  box-shadow: 0 12px 35px rgba(51, 125, 124, 0.15); /* ✅ Updated shadow */
  transform: translateY(-4px);
}

.serviceflow-pricing-card.selected {
  border-color: #337d7c; /* ✅ REPLACED */
  box-shadow: 0 12px 35px rgba(51, 125, 124, 0.2); /* ✅ Updated shadow */
  transform: translateY(-4px);
}

.serviceflow-pricing-card.popular {
  border-color: #337d7c;
  position: relative;
}

.serviceflow-pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #337d7c;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.serviceflow-pricing-card.popular .serviceflow-plan-header {
  margin-top: 20px;
}

.serviceflow-plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.serviceflow-plan-tagline {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.4;
}

.serviceflow-plan-price {
  margin-bottom: 24px;
}

.serviceflow-price-amount {
  font-size: 36px;
  font-weight: 800;
  color: #212529;
}

.serviceflow-price-period {
  font-size: 14px;
  color: #6c757d;
  display: block;
  margin-top: 4px;
}

.serviceflow-price-yearly {
  font-size: 12px;
  color: #337d7c;
  background: rgba(51, 125, 124, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 8px;
}

.serviceflow-plan-features {
  text-align: left;
  margin-bottom: 24px;
}

.serviceflow-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #212529;
}

.serviceflow-feature i {
  color: #337d7c;
  margin-top: 2px;
  flex-shrink: 0;
}

.serviceflow-btn-plan {
  width: 100%;
  padding: 12px 24px;
  border: 2px solid #337d7c; /* ✅ REPLACED */
  border-radius: 12px;
  background: #fff;
  color: #337d7c; /* ✅ REPLACED */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.serviceflow-btn-plan:hover,
.serviceflow-btn-plan.selected {
  background: #337d7c; /* ✅ REPLACED */
  color: #fff;
  box-shadow: 0 4px 12px rgba(51, 125, 124, 0.3); /* ✅ Updated shadow */
}

.serviceflow-btn-plan.free {
  border-color: #6c757d;
  color: #6c757d;
}

.serviceflow-btn-plan.free:hover,
.serviceflow-btn-plan.free.selected {
  background: #6c757d;
  color: #fff;
}

.serviceflow-form-section {
  margin-bottom: 32px;
}

.serviceflow-form-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
}

.serviceflow-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.serviceflow-form-group {
  margin-bottom: 20px;
}

.serviceflow-form-label {
  display: block;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  font-size: 14px;
}

.serviceflow-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s;
  background: #fff;
}

.serviceflow-form-control:focus {
  outline: none;
  border-color: #337d7c; /* ✅ REPLACED */
  box-shadow: 0 0 0 3px rgba(51, 125, 124, 0.1); /* ✅ Updated shadow */
}

.serviceflow-input-icon-wrapper {
  position: relative;
}

.serviceflow-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 16px;
}

.serviceflow-input-icon-wrapper .serviceflow-form-control {
  padding-left: 48px;
}

.serviceflow-btn-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #adb5bd;
  cursor: pointer;
  padding: 4px;
}

.serviceflow-btn-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}

.serviceflow-btn-back {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.serviceflow-btn-back:hover {
  background: #e9ecef;
  color: #212529;
}

.serviceflow-btn-next {
  background: #337d7c; /* ✅ REPLACED */
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(51, 125, 124, 0.3); /* ✅ Updated shadow */
}

.serviceflow-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(51, 125, 124, 0.4); /* ✅ Updated shadow */
}

.serviceflow-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.serviceflow-text-center {
  text-align: center;
}

.serviceflow-link {
  color: #337d7c; /* ✅ REPLACED */
  text-decoration: none;
  font-weight: 500;
}

.serviceflow-link:hover {
  text-decoration: underline;
}

.serviceflow-text-muted {
  color: #6c757d;
}

@media (max-width: 768px) {
  .serviceflow-modal-dialog {
      margin: 10px;
      max-width: none;
  }
  .serviceflow-modal-header,
  .serviceflow-modal-body {
      padding: 20px;
  }
  .serviceflow-category-grid,
  .serviceflow-pricing-grid {
      grid-template-columns: 1fr;
  }
  .serviceflow-form-row {
      grid-template-columns: 1fr;
  }
  .serviceflow-step-indicator {
      flex-wrap: wrap;
      gap: 10px;
  }
  .serviceflow-step {
      font-size: 12px;
      padding: 6px 12px;
  }
}
.for-providers-hero-section p{
  color: #4f5d75;
}
.p2-button{
  background: #337d7c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;

    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}