    

.services-container {
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    margin: 20px 0;
    border-radius: 8px;
}



.steps-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 10px 0;

}

.step {
  text-align: center;
  width: 18%;
  position: relative;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #e9f5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px;
  position: relative;
}

.icon-circle:after {
  content: "";
  width: 78px;
  height: 78px;
  border: 1.5px dashed #b8d7ef;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  pointer-events: none;
}

.steps-inline .step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30%;
  top: 38%;
  width: 50px;
  border-top: 1px dotted #91c4e9;
}

.icon-circle i {
  font-size: 28px;
  color: #0077b6;
  line-height: 1;
}

/* fallback if FA not available: use simple emoji */
.icon-fallback {
  font-size: 26px;
}

.step p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #002b49;
  margin: 0;
}

/* responsive tweaks */
@media (max-width: 780px) {
  .steps-inline { gap: 8px; }
  .step { width: 19%; }
}
@media (max-width: 480px) {
  .steps-inline { flex-wrap: wrap; }
  .step { width: 48%; margin-bottom: 12px; }
}


.section-heading {
    margin-top: 30px;
}


    .doctor-profile-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.doctor-profile-card {
    flex: 1 1 48%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.doctor-profile-card:hover {
    transform: translateY(-5px);
}

.doctor-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.doctor-profile-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #AF3333;
}

.doctor-profile-card p {
    font-size: 14px;
    color: #000066;
    line-height: 1.6;
}

.consult-btn {
    display: inline-block;
    background-color: #000066;
    border: 2px solid #000066;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.consult-btn:hover {
    transform: scale(1.05); /* subtle zoom effect */


 background-color: #000066; /* lighter blue on hover */
    color: #fff;
    
}

.highlight-link {
    text-align: center;
    margin-top: 20px;
}

.highlight-link a {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
}

.highlight-link a:hover {
    text-decoration: underline;
}


.viewmorebutoon {
    display: inline-block;
    color: #fff;
    background-color: #000066;
    border: 2px solid #000066;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 30px;
}

.viewmorebutoon:hover {
    background-color: #000066;
    color: #fff;
}

  
.guide-link {
    display: inline-block;
    color: #fff;
    background-color: #000066;
    border: 2px solid #000066;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}


/* ========== FIX EXTRA TOP SPACE (WITHOUT CHANGING HTML) ========== */

.service-cta-box {
    background: #FFB301;
    border: 2px solid #000066;
    border-radius: 15px;
    padding: 28px 20px; /* equal padding top/bottom */
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 102, 0.1);

    /* better spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* REMOVE default margins causing black space */
.service-cta-box h3 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4;
}

/* Your heading styling stays same */
.service-cta-box .highlight-text {
    font-size: 21px;
    font-weight: 700;
    color: #000066;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FREE text styling same */
.service-cta-box .highlight-text strong {
    color: #ff3366;
    font-size: 28px;
    padding: 0 5px;
}

/* FIX the <p> inside <h3> issue */
.service-cta-box h3 p {
    margin: 18px 0 0 0 !important; /* controlled spacing */
    padding: 0 ;
    font-size: 18px;
    font-weight: 700;
    color: #000066;
    text-transform: none;
    letter-spacing: 0;
    padding-bottom: 35px;
}

/* phone links */
.service-cta-box h3 p a {
    color: #d32f2f !important;
    font-weight: bold !important;
    text-decoration: none;
}

/* Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-size: 16px;
    min-width: 200px;
    height: 50px;
}

.cta-btn img {
    width: 20px;
    height: 20px;
}

/* Colors */
.contact-btn {
    background-color: #000066;
    color: #fff;
    border: 2px solid #000066;
    width: 211px;
}

.contact-btn:hover {
    background-color: #fff;
    color: #000066;
    transform: translateY(-3px);
    width: 211px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    width: 211px;
}

.whatsapp-btn:hover {
    background-color: #fff;
    color: #25D366;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .service-cta-box {
        padding: 24px 15px;
    }

    .service-cta-box .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
.cta-buttons{
    display: flex;
    align-items: center; 
        gap: 8px;
     /* important */
}

.cta-btn{
    height: 50px;
    line-height: 50px;        /* fix baseline difference */
    padding: 0 35px;          /* remove vertical padding */
    box-sizing: border-box;
    vertical-align: middle;
}

.whatsapp-btn img{
    display: block;           /* remove inline image baseline shift */
}


.whatappapi {

     display:inline-flex;
       align-items:center;
       gap:5px;
       background:#25D366;
       color:#fff;
       padding:4px 10px;
       border-radius:10px;
       text-decoration:none;
       font-size:13px;
       margin-left:5px;
}
