 
 
  /* â”€â”€ Section â”€â”€ */
  .section-blog {
    background: var(--white);
    padding: 72px 0;
  }
 
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
 
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
 
  .eyebrow {
        font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .subtext {
    font-size: 22px;
    color: black;
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 30px;
  }
 
  .btn-read {
    display: inline-block;
    padding: 11px 26px;
    background: var(--accent);
    color: var(--white);
    
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
 
  .btn-read:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
 

 
  .blog-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
  }
 
  .blog-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
  }
 
  .blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
 
  .blog-card:hover .blog-img-wrap img {
    transform: scale(1.04);
  }
 
  .blog-caption {
    font-size: 23px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 100%;
  }
 
  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .heading-main { font-size: 34px; }
    .container { padding: 0 20px; }
    .section-blog { padding: 48px 0; }
    .subtext { max-width: 100%; }
    .blog-caption { max-width: 100%; }
  }
  
  /* â”€â”€ Section â”€â”€ */
  .section-testimonials {
    background: #e2e5e1;
    padding: 72px 0 80px;
  }
 
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
 
  /* â”€â”€ Heading â”€â”€ */
  .section-title {
        font-size: 36px;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 24px;
    line-height: normal;
  }
 p.testip1 {
    text-align: center;
    font-size: 17px;
    color: black;
}
  /* â”€â”€ Cards Grid â”€â”€ */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
 
  /* â”€â”€ Single Card â”€â”€ */
  .card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 26px;
  }
 
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  }
 
  /* â”€â”€ Video Thumbnail â”€â”€ */
  .video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #222;
    cursor: pointer;
    overflow: hidden;
  }
 
  .video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
 
  .card:hover .video-wrap img {
    transform: scale(1.04);
  }
 
  /* Play button overlay */
  .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.18);
    transition: background 0.2s;
  }
 
  .video-wrap:hover .play-btn {
    background: rgba(0,0,0,0.30);
  }
 
  .play-circle {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s, background 0.2s;
  }
 
  .video-wrap:hover .play-circle {
    transform: scale(1.08);
    background: #fff;
  }
 
  .play-circle svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    margin-left: 3px; /* optical center for triangle */
  }
 
  /* â”€â”€ Card Body â”€â”€ */
  .card-body {
    padding: 22px 0px 24px;
  }
 
  .card-text {
    font-size: 18.5px;
    color: black;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
 
  .patient-name {
    font-size: 20px;
    font-weight: 700;
    color: black;
    margin-bottom: 2px;
  }
 
  .patient-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 400;
  }
 
  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 900px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
  }
 
  @media (max-width: 580px) {
    .cards-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
    .container { padding: 0 20px; }
    .section-testimonials { padding: 48px 0; }
  }
  
   
  /* â”€â”€ Section â”€â”€ */
  .section-faq {
    background: var(--white);
    padding: 72px 0;
  }
 
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
 
  .two-col {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }

 
  .btn-contact {
        display: inline-block;
    width: auto;
    padding: 15px 64px;
    background: #e59f49;
    color: white;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin: 38px auto 0;
  }
 
  .btn-contact:hover {
        display: inline-block;
    width: auto;
    padding: 15px 64px;
    background: #e59f49;
    color: white;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin: 38px auto 0;
  }
 
  .faq-list {
    list-style: none;
    border-top: 1px solid var(--border);
  }
 
  .faq-item {
    border-bottom: 1px solid;
  }
 
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 21px;
    font-weight: 400;
    color: var(--text-body);
    transition: color 0.2s;
  }
 
  .faq-question:hover { color: var(--text-dark); }
 
  .faq-question.open { color: var(--text-dark); font-weight: 600; }
 
  .faq-arrow {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 44px;
    transition: transform 0.3s ease;
  }
 
  .faq-question.open .faq-arrow {
    transform: rotate(90deg);
  }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 0;
  }
 
  .faq-answer.open {
    max-height: 200px;
    padding-bottom: 18px;
  }
 
  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .heading-main { font-size: 32px; }
    .container { padding: 0 20px; }
    .section-faq { padding: 48px 0; }
  }
  
  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€ Section Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .section-why-choose {
    background: var(--white);
    padding: 72px 0;
  }

  .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 40px;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .heading-main1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    color: black;
    margin-bottom: 18px;
  }
  .heading-main {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;
    color: black;
    margin-bottom: 18px;
  }

  .subheading {
    font-size: 23px;
    
    font-weight: 300;
    margin-bottom: 36px;
  }

  /* Doctor image */
  .doctor-img-wrap {
    position: relative;
    width: 100%;
    max-width: 61%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
  }

  .doctor-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(1.02);
  }

  /* Email tag */
  .email-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 21px;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s;
  }

  .email-tag:hover { background: var(--mid-gray); }

  .email-icon {
    width: 52px;
    height: 52px;
    background: #98c4b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .email-icon svg { width: 15px; height: 15px; fill: #fff; }

  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€ Right Column â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .col-right {}

  /* Feature bullets */
  .features-list {
    list-style: none;
    margin-bottom: 44px;
    border-top: 1px solid var(--border);
    margin-top: 1.74em;
    padding-left: 0;
    margin-left: 0;
    width: 70%;
  }

  .features-list li {
    padding: 11px 0;
    font-size: 19px;
    color: var(--text-body);
    font-weight: 400;
    border-bottom: 1px solid;
    position: relative;
    padding-left: 0;
  }


 
  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€ Contact Form Block â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .contact-heading {
    font-size: 45px;
    font-weight: 400;
    line-height: normal;
    color: black;
    margin-bottom: 24px;
  }

  .form-card {
    background: #eaeaea;
    padding: 34px;
    width: 71%;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-control {
    width: 100%;
    padding: 12px 14px;
    
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }

  .form-control::placeholder { color: var(--text-muted); }

  .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
  }

  /* Services select with arrow */
  .select-wrap {
    position: relative;
  }

  .select-wrap select {
    cursor: pointer;
    padding-right: 40px;
  }

  .select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-muted);
    pointer-events: none;
  }

  /* Checkbox row */
  .checkbox-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 22px;
    color: black;
  }

  .checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: black;
    cursor: pointer;
    flex-shrink: 0;
  }

  .checkbox-row a { color: var(--accent); text-decoration: none; }
  .checkbox-row a:hover { text-decoration: underline; }

  /* Submit button */
  .btn-submit {
        display: block !important;
    width: auto;
    padding: 15px 64px !important;
    background: #e59f49;
    color: white !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    border: none;
    border-radius: 24px !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s;
    margin: 45px auto 0;
  }

  .btn-submit:hover {
    display: block;
    width: auto;
    padding: 15px 64px;
    background: #e59f49;
    color: white;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin: 45px auto 0;
  }

  .btn-submit:active { transform: translateY(0); }

  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .heading-main { font-size: 34px; }
    .contact-heading { font-size: 26px; }
    .container { padding: 0 20px; }
    .section-why-choose { padding: 48px 0; }
  }
  span.accent21 {
    font-weight: 100;
}

h3.homeh31 {
    font-size: 26px;
}
#homeservices {
    background: #e1e5df;
}

span.sc_item_subtitle.sc_title_subtitle.sc_item_subtitle_above.sc_item_title_style_default {font-weight: bold;font-size: 21px;}

h1.sc_item_title.sc_title_title.sc_item_title_style_default.sc_item_title_tag {
    color: black;
    margin-bottom: 11%;
	    line-height: normal;
}
div#spetext {
    width: 170%;
    font-weight: bold;
    font-size: 21px;
    margin-top: 13%;
}
span.email-icon img {
    width: 25px;
}
input[type=radio] + label:before, input[type=checkbox] + label:before, .wpcf7-list-item-label.wpcf7-list-item-right:before {
    border-color: #000000 !important;
    height: 27px;
    width: 27px;
    left: -11px;
    top: -3px;
}
.form-card input {
    background: white;
    padding: 14px 16px !important;
    border-radius: 7px;
}

.form-card select {
    background: white !important;
    padding: 14px 16px;
    border-radius: 7px;
}

.form-card checkbox {
    border: 1px solid;
}


.checkbox-row label {
    position: relative;
    left: 19px;
    font-size: 18px !important;
    top: 10px;
}

@media (min-width: 240px) and (max-width: 599px)  {
    h3.homeh31 {
    font-size: 26px;
    line-height: normal;
}
div#spetext {
    width: 100%;
    font-weight: bold;
    font-size: 21px;
    margin-top: 13%;
    margin-bottom: 6%;
}
.email-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 8px 2px;
    font-size: 21px;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s;
}
.doctor-img-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
}
.features-list {
    width: 100%;
}
.form-card {
    background: #eaeaea;
    padding: 34px;
    width: 80%;
}
.faq-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
}
}