.elementor-44 .elementor-element.elementor-element-4f9fd9b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44 .elementor-element.elementor-element-e1de003{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44 .elementor-element.elementor-element-2dc9ff9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cb8d13e */.custom-hero {
  position: relative;
  background-image: url("https://carescan.net/wp-content/uploads/2026/03/Why-Choose-Us.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Gradient Overlay */
.custom-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 102, 255, 0.55)
  );
}

/* Content on top */
.custom-hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* Heading */
.custom-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Breadcrumb style */
.custom-hero .breadcrumb {
  font-size: 16px;
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .custom-hero {
    padding: 60px 15px;
  }

  .custom-hero h1 {
    font-size: 28px;
  }
}
.custom-hero {
  position: relative;
  background-image: url("https://carescan.net/wp-content/uploads/2026/03/Why-Choose-Us.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Solid color overlay */
.custom-hero .overlay {
  position: absolute;
  inset: 0;
  background: #1FAFBA;
  opacity: 0.75; /* adjust 0.6 - 0.85 as needed */
}

/* Content stays above */
.custom-hero .content {
  position: relative;
  z-index: 2;
}
.custom-hero h1 {
  color: #ffffff;
}
.custom-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b0a22ea *//* =========================
   CONSULTANTS SECTION (CLEAN)
========================= */

.consultants-section{
  width:100%;
  padding:80px 5%;
  font-family:Poppins, sans-serif;
}

/* ROW */
.consultant-row{
  display:flex;
  align-items:center;
  gap:60px;
  margin-bottom:100px;

  /* reveal base */
  opacity:0;
  transform:translateY(60px);
  transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.consultant-row.active{
  opacity:1;
  transform:translateY(0);
}

.consultant-row.reverse{
  flex-direction:row-reverse;
}

/* IMAGE BOX */
.consultant-image{
  background:#fff;
  padding:25px;
  border-radius:22px;

  box-shadow:0 15px 40px rgba(0,0,0,0.08);

  transition:.4s ease;
}

/* IMAGE */
.consultant-image img{
  width:100%;
  max-width:420px;
  display:block;
  border-radius:16px;

  transition:transform .4s ease;
}

/* IMAGE HOVER */
.consultant-image:hover{
  box-shadow:
    0 25px 60px rgba(0,0,0,0.15),
    0 0 25px rgba(31,182,181,0.35);
}

.consultant-image:hover img{
  transform:scale(1.05);
}

/* CONTENT */
.consultant-content{
  max-width:520px;
}

/* HEADINGS */
.consultant-content h2{
  font-size:36px;
  color:#2c4665;
  margin-bottom:8px;
  font-weight:700; /* 🔥 bold */
}

.consultant-content h4{
  color:#1fb6b5;
  font-size:20px;
  margin-bottom:18px;
  font-weight:600;
}

/* TEXT */
.consultant-content p{
  color:#6b7280;
  line-height:1.7;
  margin-bottom:18px;
}

/* BUTTON */
.appointment-btn{
  display:inline-block;
  background:#2c4665;
  color:#fff;
  padding:12px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;

  transition:.3s ease;
}

/* BUTTON HOVER */
.appointment-btn:hover{
  background:#1c3148;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(31,182,181,0.35);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .consultant-row{
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .consultant-row.reverse{
    flex-direction:column;
  }

  .consultant-content h2{
    font-size:26px;
  }

  .consultant-content h4{
    font-size:16px;
  }

  .consultant-content p{
    font-size:14px;
  }

}/* End custom CSS */