
    /* Main Content */
    .content-section {
        padding: 80px 0;
        overflow: visible;
        background-color: white;
    }

    .content-section h4 {
        text-align: left;
        /* color: var(--primary); */
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .about-card {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        padding: 1.2rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .about-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--accent-cyan);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }

    .about-card:hover {
        border-color: var(--accent-light-cyan);
        box-shadow: 0 10px 30px rgba(13, 115, 119, 0.1);
        transform: translateY(-5px);
    }

    .about-card:hover::before {
        transform: scaleY(1);
    }

    .about-card h5 {
        color: var(--accent-cyan);
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .about-card i {
        /* color: var(--light-purple); */
        /* font-size: 1.2rem; */
    }

    /* Info Box */
    .info-box {
        background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(20, 145, 155, 0.05) 100%);
        border-left: 4px solid var(--accent-cyan);
        /* box-shadow: 0 10px 30px rgba(13, 115, 119, 0.2); */
        padding: 2rem;
        border-radius: 20px;
        /* margin: 2rem 0; */
    }

    .info-box h3 {
        color: var(--accent-cyan);
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .info-box p {
        color: var(--neutral-dark);
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }

    .highlight {
        color: var(--primary-purple);
        font-weight: 600;
    }

    /* CTA Section */
    /* .cta-section {
  background: linear-gradient(135deg,
      var(--primary-purple) 0%,
      var(--primary-purple-light) 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
} */

    .btn-book {
        background: var(--primary-purple);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-book:hover {
        background: var(--light-purple);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
        color: white;
    }

    /* Accordion */
    .accordion-button {
        background: white;
        color: var(--primary-purple);
        font-weight: 600;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        margin-bottom: 0.5rem;
        padding: 1.2rem;
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg,
                rgba(13, 115, 119, 0.1) 0%,
                rgba(20, 145, 155, 0.1) 100%);
        color: var(--primary-purple);
        box-shadow: none;
    }

    .accordion-button:focus {
        border-color: var(--primary-purple);
        box-shadow: 0 0 0 0.25rem rgba(13, 115, 119, 0.25);
    }

    .accordion-body {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-top: none;
        border-radius: 20px;
        color: var(--primary-purple);
        line-height: 1.8;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .feature-item {
        text-align: center;
        padding: 2rem;
        background: var(--primary-purple);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: white;
        box-shadow: 0 10px 30px rgba(13, 115, 119, 0.1);
        transform: translateY(-5px);
    }


    .feature-item h4 {
        color: var(--accent-cyan);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        color: var(black);
        font-size: 0.95rem;
    }

    /* Doctor Section */
    /* Doctor Section */
    .doctor-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #f7fbff, #ffffff);
    }

    /* Card */
    .doctor-card {
        background: linear-gradient(135deg, #dff7fb, #eefcff);
        border-radius: 28px;
        padding: 50px 40px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }

    /* Info */
    .doctor-info {
        color: #555;
    }

    /* Badge */
    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #00bcd4, #0097a7);
        color: #fff;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    /* Name */
    .doctor-name {
        font-size: 2.1rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 5px;
    }

    /* Role */
    .doctor-role {
        font-size: 1.05rem;
        color: #007c91;
        margin-bottom: 20px;
        font-weight: 600;
    }

    /* Text */
    .doctor-info p {
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Highlights */
    .doctor-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 25px 0;
    }

    .highlight {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        padding: 10px 16px;
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
        font-size: 0.9rem;
        font-weight: 500;
    }

    .highlight i {
        color: #00acc1;
        font-size: 1.1rem;
    }

    /* Buttons */
    .doctor-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .doctor-actions .btn {
        padding: 10px 22px;
        border-radius: 30px;
        font-weight: 600;
    }

    /* Image */
    .doctor-image img {
        /* max-height: 420px; */
        filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.2));
    }

    /* Responsive */
    @media (max-width: 991px) {
        .doctor-card {
            padding: 40px 25px;
        }

        .doctor-name {
            font-size: 1.8rem;
        }

        .doctor-actions {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 575px) {
        .doctor-highlights {
            flex-direction: column;
        }

        /* .doctor-image img {
                max-height: 320px;
            } */
    }

.pill.active {
  background: var(--accent-cyan);
  color: #fff;
  border-color: var(--accent-cyan);
}


.kp-tabs{
    gap:10px
}