.Doctors-section {
    padding: 80px 20px 90px;
    background: radial-gradient(circle at top, rgba(235, 72, 115, 0.12) 0%, rgba(98, 64, 162, 0.08) 55%, #f6fbfb 100%);
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}

.Doctors-header {
    max-width: 640px;
    margin: 0 auto 48px;
}

.Doctors-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--purple);
}

.Doctors-header h2 span {
    color: var(--accent1);
}

.Doctors-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--muted);
}

.Doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* exactly 3 cards per row */
    gap: 26px;
    align-items: stretch;
    justify-items: center;
}

.doctor-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 22px 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(98, 64, 162, 0.12);
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    height: 100%;
}

.doctor-card__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card__image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(235, 72, 115, 0.2);
    margin: 0;
}

.doctor-card__header,
.doctor-card__body,
.doctor-card__meta {
    width: 100%;
}

.doctor-card__header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: clamp(64px, 7vw, 86px);
    align-items: center;
    text-align: center;
}

.doctor-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--dark);
}

.doctor-card .doctor-role {
    margin: 0;
    font-weight: 600;
    color: var(--accent2);
    text-align: center;
}

.doctor-card__body {
    min-height: clamp(96px, 14vw, 130px);
}

.doctor-card__meta {
    min-height: clamp(38px, 6vw, 54px);
}

.doctor-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--muted);
}

.doctor-card__actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-self: end;
}

.doctor-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.doctor-learn-more:hover,
.doctor-learn-more:focus-visible {
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .Doctors-section {
        padding: 50px 16px 60px;
    }

    .Doctors-grid {
        gap: 20px;
        grid-auto-rows: auto;
    }

    .doctor-card__header {
        min-height: auto;
    }

    .doctor-card__body {
        min-height: auto;
    }

    .doctor-card__meta {
        min-height: auto;
    }

    .doctor-card {
        grid-template-rows: auto auto auto auto auto;
    }
}

@media (max-width: 576px) {
    .Doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .doctor-card {
        padding: 26px 18px;
    }
}

/* Scoped styles only for the About page banner */
.about-page__banner {
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    /* padding: 4.5rem 1rem; */
    /* base gradient background */
    background: linear-gradient(120deg, #f15b7a 0%, #7b3fb4 55%, #5b3aa8 100%);
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    /* matches serif look in sample */
}

/* inner container */
.about-page__banner .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* above background shapes */
}

/* big decorative shapes created via a pseudo element container */
.about-page__bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* circle shapes using gradients and radial-gradients */
.about-page__bg-shapes::before,
.about-page__bg-shapes::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.95;
    transform: translateZ(0);
}

/* large purple semicircle at top center-left */
.about-page__bg-shapes::before {
    width: 950px;
    height: 950px;
    left: 50%;
    top: -820px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 45% 35%, rgba(84, 45, 139, 0.95) 0%, rgba(84, 45, 139, 0.95) 40%, rgba(123, 63, 180, 0.85) 100%);
    filter: blur(0px);
}

/* small pink circle on top-right */
.about-page__bg-shapes::after {
    width: 140px;
    height: 140px;
    right: 40px;
    top: -50px;
    background: radial-gradient(circle, rgba(241, 92, 122, 1) 0%, rgba(241, 92, 122, 0.9) 70%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Welcome heading */
.about-page__welcome {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

/* main content layout */
.about-page__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    padding-bottom: 40px;
}

/* left / right images */
.about-page__image--left {
    width: 180px;
    max-width: 20%;
    height: 60%;
    object-fit: contain;
    position: absolute;
    bottom: -21px;
    right: 87%;
}

.about-page__image--right {
    width: 180px;
    max-width: 20%;
    height: 60%;
    object-fit: contain;
    position: absolute;
    bottom: -21px;
    left: 87%;
}

/* center text block */
.about-page__text {
    max-width: 680px;
    flex: 1 1 60%;
    margin: 0 auto;
    text-align: center;
}

/* clinic title */
.about-page__title {
    font-size: 3.6rem;
    margin: 0 0 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

/* description paragraph */
.about-page__description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
}




/* ----------------------------------------------- */
/* ✅ Responsive Styles for Tablets & Large Mobiles */
/* ----------------------------------------------- */
@media (max-width: 768px) {

    .about-page__welcome {
        font-size: 1.9rem;
        margin-bottom: 20px;
        margin-top: 32px;
    }

    .about-page__content {
        flex-direction: column;
        padding-bottom: 20px;
        gap: 1rem;
    }

    .about-page__text {
        max-width: 90%;
    }

    .about-page__title {
        font-size: 3rem;
        width: 100%;
        text-align: center;
    }

    .about-page__description {
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: justify;
    }

    /* ✅ Adjust background shapes for smaller screens */
    .about-page__bg-shapes::before {
        width: 650px;
        height: 650px;
        top: -380px;
    }

    .about-page__bg-shapes::after {
        width: 110px;
        height: 110px;
        right: 15px;
        top: -20px;
    }

    /* ✅ Reposition bottom images */
    .about-page__image--left,
    .about-page__image--right {
        position: static;
        width: 130px;
        height: auto;
        max-width: 35%;
    }

    .about-page__image--left {
        order: -1;
        /* Move doctor image to top */
    }

    .about-page__image--right {
        order: 2;
        /* Move face image below text */
    }

    .about-page__features-image {
        width: 50%;
        order: -1;

    }

    .about-page__features-image img {

        padding-top: 0px
    }

    .about-page__team-cartoon-left img {
        display: none;
    }

    .about-page__team-cartoon-right img {
        display: none;



    }

    .about-page__team-title {
        padding-bottom: 20px;
        margin-bottom: 5rem;
    }

    .about-page__features-image img {
        padding-top: 0px;
    }



    .about-page__team-members {
        display: flex;
        gap: 6rem;
        justify-content: center;
        flex-wrap: wrap;
        flex: 1;
    }
}
















/* @media (max-width: 768px) {
  .about-page__banner { padding: 4rem 0; }
  .about-page__content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .about-page__image { width: 140px; max-width: 30%; }
  .about-page__title { font-size: 2rem; }
  .about-page__welcome { font-size: 1.3rem; }
  .about-page__bg-shapes::before {
    width: 640px;
    height: 640px;
    top: -280px;
  }
  .about-page__bg-shapes::after { right: 18px; top: 6px; width: 110px; height: 110px; }
  .about-page__description { font-size: .95rem; padding: 0 0.4rem; text-align: center; }
}

@media (max-width: 420px) {
  .about-page__image { width: 120px; }
  .about-page__title { font-size: 1.7rem; }
  .about-page__welcome { font-size: 1.15rem; margin-bottom: .8rem; }
  .about-page__description { font-size: .92rem; line-height: 1.5; }
  .about-page__bg-shapes::before { width: 520px; height: 520px; top: -240px; }
} */




/* ------------------------------------------------------------- */
/* ABOUT PAGE – VISION & MISSION SECTION */
/* ------------------------------------------------------------- */
.about-page__vision-mission {
    background-color: #fff;
    padding: 5rem 1.2rem;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}

.about-page__vision-mission-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-page__card {
    flex: 1 1 400px;
    max-width: 460px;
    text-align: center;           /* center text */
    display: flex;
    flex-direction: column;
    align-items: center;           /* center horizontally */
    justify-content: center;       /* center vertically */
    gap: 1.4rem;
    margin: 0 auto;                /* center card itself in container */
}

.about-page__icon {
    width: 140px;
    height: auto;
    object-fit: contain;
    display: flex;                 /* ensure image centers properly */
    justify-content: center;
    align-items: center;
    margin: 0 auto;                /* center the icon container */
}

.about-page__icon img {
    width: 100%;
    height: 100%;
}

.about-page__card-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1.4px;
    text-align: center;           /* center the title text */
}


.about-page__card-text {
    font-size: 1.18rem;
    line-height: 1.85;
    color: #433255;
    width: 100%;
    max-width: 95%;
    margin: 0;
    margin-right: auto;
    text-align: justify;
}

/* Vision color theme */
/* .about-page__card--vision .about-page__icon {
  filter: invert(22%) sepia(88%) saturate(3664%) hue-rotate(248deg) brightness(90%) contrast(100%);
  width: 70px;
}  */

.about-page__card--vision .about-page__card-title {
    color: #6a33a0;
    /* purple */
}

/* Mission color theme */
.about-page__card--mission .about-page__icon {
    filter: none;
}

.about-page__card--mission .about-page__card-title {
    color: #f15b7a;
    /* pink/red */
}

@media (max-width: 768px) {
    .about-page__vision-mission {
        padding: 4.2rem 1rem;
    }

    .about-page__card {
        max-width: 520px;
        gap: 1.2rem;
    }

    .about-page__icon {
        width: 120px;
        margin: 0;
    }

    .about-page__card-title {
        font-size: 1.9rem;
    }

    .about-page__card-text {
        font-size: 1.06rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .about-page__vision-mission {
        padding: 3.8rem 0.8rem;
    }

    .about-page__icon {
        width: 110px;
        margin: 0;
    }

    .about-page__card-title {
        font-size: 1.7rem;
    }

    .about-page__card-text {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Responsive adjustments
@media (max-width: 768px) {
  .about-page__vision-mission {
    padding: 3.5rem 1rem;
  }
  .about-page__vision-mission-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .about-page__card {
    max-width: 500px;
  }
} */



/* ------------------------------------------------------------- */
/* ABOUT PAGE – FEATURES & BENEFITS SECTION */
/* ------------------------------------------------------------- */
.about-page__features-benefits {
    background: linear-gradient(90deg, #7c3aad 0%, #e14b7a 100%);
    color: #fff;
    padding: 1.2rem 1.5rem;
    font-family: "Times New Roman", Times, serif;
}

.about-page__features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Left Text */
.about-page__features-text {
    flex: 1 1 550px;
}

.about-page__features-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-page__features-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.about-page__features-list li {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Right Image */
.about-page__features-image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.about-page__features-image img {
    width: 70%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    position: relative;
    padding-top: 80px;
    margin-bottom: -15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-page__features-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-page__features-text {
        flex: 1 1 100%;
        text-align: left;
    }

    .about-page__features-list {
        margin-left: 0;
        padding-left: 1.5rem;
        list-style-position: outside;
        text-align: left;
    }

    .about-page__features-list li {
        text-align: left;
        display: list-item;
    }

    .about-page__features-image {
        margin-bottom: 2rem;
    }

    .about-page__features-image img {
        width: 150%;
        max-width: 250px;
        /* padding-top: 0px; */
    }


}



/* ------------------------------------------------------------- */
/* ABOUT PAGE – OUR TEAM SECTION */
/* ------------------------------------------------------------- */
.about-page__team {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    color: #eb4873;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    font-family: "Times New Roman", Times, serif;
}

.about-page__team-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6rem;
    letter-spacing: 1px;
    margin-top: -20px;
}

.about-page__team-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.about-page__team-members {
    display: flex;
    gap: 7rem;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;
}

/* Team Card */
.about-page__team-card {
    background: #7c3aad;
    border-radius: 0.5rem;
    padding: 4rem 2rem 2rem;
    width: 260px;
    position: relative;
    color: #fff;
    text-align: center;
}

.about-page__team-image {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #eb4873;
}

.about-page__team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__team-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 80px;
    text-transform: uppercase;
}

.about-page__team-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* Cartoon Characters */
.about-page__team-cartoon {
    flex: 0 0 auto;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page__team-cartoon-left img {
    /* width: 10%; */
    height: 58%;
    position: absolute;
    left: -2%;
    bottom: -220px;
    display: none;
}



.about-page__team-cartoon-right img {
    width: 12%;
    height: 58%;
    position: absolute;
    right: 3%;
    bottom: -210px;
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .about-page__team-wrapper {
        flex-direction: column;
    }

    .about-page__team-cartoon {
        display: none;
    }

    .about-page__team-members {
        justify-content: center;
    }

    .about-page__team-card {
        width: 280px;
    }
}



/* ------------------------------------------------------------- */
/* ABOUT PAGE – FAQ SECTION */
/* ------------------------------------------------------------- */
.about-page__faq {
    background: linear-gradient(90deg, #e14b7a 0%, #7c3aad 100%);
    background: linear-gradient(90deg, #7c3aad 0%, #e14b7a 100%);

    color: #fff;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    font-family: "Times New Roman", Times, serif;
}

.about-page__faq-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.about-page__faq-stars {
    text-align: center;
    color: #ffdf00;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

/* FAQ List */
.about-page__faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* FAQ Item */
.about-page__faq-item {
    background: #a84aa5;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question Button */
.about-page__faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: #b55bb3;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.about-page__faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Open State */
.about-page__faq-item.active .about-page__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.about-page__faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #7b3fa9;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.about-page__faq-item.active .about-page__faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem 1.5rem;
}

/* Cartoon Image */
.about-page__faq-cartoon {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 160px;
}

.about-page__faq-cartoon img {
    width: 100%;
    height: auto;
}



/* Responsive */
@media (max-width: 768px) {
    .about-page__faq-title {
        font-size: 1.8rem;
    }

    .about-page__faq-stars {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-page__faq-cartoon {
        display: none;
    }

    .about-page__faq-question {
        font-size: 0.95rem;
    }
}


/* Gradient Divider between sections
.gradient-divider {
  height: 100px;
  background: linear-gradient(to bottom, #e73827, #a044ff);
} */



/* Background Circles */
.background-circles .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle1 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    top: -100px;
    right: 150px;
}

.circle2 {
    width: 180px;
    height: 180px;
    background: #ffffff;
    bottom: -100px;
    left: 150px;
}







/* Responsive adjustments */
@media (max-width:1024px) {
    .about-page__welcome {
        font-size: 2.1rem;
        margin-top: 40px;
    }

    .about-page__image {
        width: 160px;
        max-width: 18%;
    }

    .about-page__title {
        font-size: 3.2rem;
        text-align: center;
        margin-left: 0;
    }

    .about-page__description {
        font-size: 1.05rem;
        text-align: justify;
        width: 85%;
        line-height: 1.75;
    }

    .about-page__bg-shapes::before {
        width: 700px;
        height: 700px;
        top: -500px;
    }

    .about-page__image--right {
        bottom: -30px;

    }

    .about-page__team-cartoon-right img {
        display: none;
    }

    .about-page__team-cartoon-left img {
        display: none;
    }


    .about-page__features-container {
        gap: 0;
    }
}


@media (max-width:1280px) {

    .about-page__team-cartoon-right img {
        display: none;
    }

    .about-page__team-cartoon-left img {
        display: none;
    }

}





/* responsive styles for mobile */
@media (max-width: 480px) {
    .about-page__bg-shapes::after {
        top: -70px;
    }

    .about-page__team-members {
        gap: 6rem;
    }

    .about-page__team-title {
        margin-bottom: 5rem;

    }

    .about-page__welcome {
        font-size: 1.6rem;
    }

    .about-page__title {
        font-size: 2.4rem;
        margin-left: 0;
    }

    .about-page__description {
        font-size: 1rem;
        line-height: 1.6;
    }

}





/* SERVICE PAGE BANNER */
.pft-service-page__banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f15b7a 0%, #7b3fb4 55%, #5b3aa8 100%);
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    padding: 4rem 2rem;
}

/* Inner container */
.pft-service-page__inner.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Layout */
.pft-service-page__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Text */
.pft-service-page__text {
    flex: 1 1 55%;
    padding-right: 2rem;
}

.pft-service-page__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.pft-service-page__description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    width: 80%;
}

/* Images container */
.pft-service-page__images {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
}

.pft-service-page__image {
    width: 45%;
    /* max-width: 220px; */
    height: auto;
    object-fit: contain;
    padding: 0px 0px;
    position: absolute;
    bottom: -120px;
}

.pft-left {
    left: 45%;
}


.pft-right {
    left: 75%;
    height: 100%;
}

/* Background shapes */
.pft-service-page__bg-shapes::before,
.pft-service-page__bg-shapes::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.pft-service-page__bg-shapes::before {
    width: 800px;
    height: 800px;
    top: -600px;
    right: -300px;
    background: radial-gradient(circle, rgba(123, 63, 180, 0.9) 0%, rgba(91, 58, 168, 0.8) 100%);
}

.pft-service-page__bg-shapes::after {
    width: 160px;
    height: 160px;
    bottom: -50px;
    left: 100px;
    background: radial-gradient(circle, rgba(241, 92, 122, 0.95) 0%, rgba(241, 92, 122, 0.8) 80%);
}

/* ----------------------- */
/* RESPONSIVE DESIGN */
/* ----------------------- */

/* Tablets */
@media (max-width: 992px) {
    .pft-service-page__content {
        flex-direction: column;
        text-align: center;
    }

    .pft-service-page__text {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .pft-service-page__images {
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 2rem;
        gap: 1rem;
    }

    .pft-service-page__image {
        width: 40%;
        max-width: 180px;
    }

    .pft-service-page__title {
        font-size: 2rem;
    }

    .pft-service-page__description {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pft-service-page__banner {
        padding: 3rem 1rem;
    }

    .pft-service-page__title {
        font-size: 1.6rem;
    }

    .pft-service-page__description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .pft-service-page__images {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
    }

    .pft-service-page__image {
        width: 40%;
        max-width: 150px;
    }

    .pft-service-page__bg-shapes::before {
        width: 400px;
        height: 400px;
        top: -250px;
        right: -100px;
    }

    .pft-service-page__bg-shapes::after {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: 40px;
    }
}














/* Main section layout */
.service-test-section {
    background-color: #fff;
    padding: 60px 8%;
}

/* Flex container */
.service-test-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Image styling */
.service-test__image img {
    width: 450px;
    height: auto;
    border-radius: 6px;
}

/* Text area styling with divider */
.service-test__content {
    border-left: 3px solid #6f419d;
    /* Purple divider */
    padding-left: 30px;
    color: #6f419d;
    font-family: "Times New Roman", Times, serif
}

/* Headings and text */
.service-test__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6f419d;
    margin-bottom: 10px;
}

.service-test__description {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-test__subtitle {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #6f419d;
}

/* List styling */
.service-test__list {
    list-style: disc;
    margin-left: 20px;
}

.service-test__list li {
    margin-bottom: 6px;
}

/* Responsive design for mobile and tablets */
@media (max-width: 768px) {
    .service-test-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-test__content {
        border-left: none;
        border-top: 3px solid #6f419d;
        padding-left: 0;
        padding-top: 20px;
    }

    .service-test__image img {
        width: 90%;
    }
}





/* Main section */
.service-test2-section {
    background-color: #fff;
    padding: 60px 8%;
}

/* Flex layout */
.service-test2-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Image */
.service-test2__image img {
    width: 450px;
    height: auto;
    border-radius: 6px;
}

/* Text content */
.service-test2__content {
    border-left: 3px solid #6f419d;
    padding-left: 30px;
    color: #6f419d;
    font-family: "Times New Roman", Times, serif
}

.service-test2__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6f419d;
    margin-bottom: 10px;
}

.service-test2__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-test2-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-test2__content {
        border-left: none;
        border-top: 3px solid #6f419d;
        padding-left: 0;
        padding-top: 20px;
    }

    .service-test2__image img {
        width: 90%;
    }
}


/* PFT FOT INFORMATION SECTION */
.pft-fot-info-section {
    background: linear-gradient(120deg, #f15b7a 0%, #7b3fb4 55%, #5b3aa8 100%);
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pft-fot-info-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.pft-fot-info-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.pft-fot-info-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

.pft-fot-info-divider {
    width: 2px;
    background-color: #ffffff;
    height: 200px;
}

.pft-fot-info-text {
    flex: 1 1 45%;
    color: #ffffff;
    font-family: 'Times', sans-serif;
}

.pft-fot-info-heading {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.pft-fot-info-description {
    line-height: 1.7;
    color: #ffffff;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .pft-fot-info-container {
        flex-direction: column;
        text-align: center;
    }

    .pft-fot-info-divider {
        display: none;
    }

    .pft-fot-info-image img {
        max-width: 350px;
    }
}





/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--card);
}

.faq-heading {
    font-size: 48px;
    font-weight: bold;
    color: #7b3fb4;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--card);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    font-family: "Times New Roman", Times, serif;
}

.faq-icon {
    font-size: 16px;
    color: var(--purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
    font-family: "Times New Roman", Times, serif;
}

/* Responsive FAQ Styles */
@media (max-width: 968px) {
    .faq-heading {
        font-size: 40px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }
}



/* ===== BUTTONS ===== */
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    width: auto;
    align-self: flex-start;
}



/* OUR TEAM SECTION */
.about-page__team {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: Times New Roman, "Times New Roman", serif
}

.about-page__team-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a1b9a;
    /* Deep purple accent */
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.about-page__team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* column-gap: 0px */
}

.about-page__team-card {
    background: linear-gradient(135deg, #7b3fb4, #f15b7a);
    color: #fff;
    border-radius: 20px;
    padding: 52px 8px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: -30px;

}

.about-page__team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.about-page__team-img {
    width: 70%;
    height: 70%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-page__team-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-page__team-role {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

/* 🧩 Small Laptops (1024–1366px) */
@media (max-width: 1366px) {
    .about-page__team {
        padding: 70px 40px;
    }

    .about-page__team-grid {
        gap: 25px;
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }

    .about-page__team-heading {
        font-size: 2.3rem;
        margin-bottom: 40px;
    }

    .about-page__team-card {
        max-width: 280px;
        padding: 35px 30px;
    }
}

/* 🧩 Tablets (768–1024px) */
@media (max-width: 1024px) {
    .about-page__team {
        padding: 60px 20px;
    }

    .about-page__team-heading {
        font-size: 2.1rem;
        margin-bottom: 35px;
    }

    .about-page__team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
    }

    /* .about-page__team-card {
    max-width: 100%;
  } */

    .about-page__team-img {
        width: 120px;
        height: 120px;
    }
}

/* 🧩 Mobile Large (480–768px) */
@media (max-width: 768px) {
    .about-page__team-heading {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .about-page__team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-page__team-card {
        padding: 25px 15px;
        max-width: 280px;
    }

    .about-page__team-img {
        width: 180px;
        height: 250px;
    }

    .about-page__team-name {
        font-size: 1.1rem;
    }

    .about-page__team-role {
        font-size: 0.9rem;
    }
}

/* 🧩 Mobile Small (below 480px) */
@media (max-width: 480px) {
    .about-page__team-heading {
        font-size: 1.7rem;
    }

    .about-page__team {
        padding: 50px 15px;
    }

    .about-page__team-card {
        padding: 20px 12px;
    }
}


/* === Doctor Spotlight Cards === */
.about-team {
    background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 60%, #f5f7fb 100%);
    padding: 45px 0 70px;
}

.about-team__container {
    width: min(1180px, 90vw);
    margin: 0 auto;
}

.about-team__header {
    text-align: center;
    margin-bottom: 48px;
    color: #1f2a44;
}

.about-team__eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22rem;
    font-weight: 700;
    color: #7c4dff;
    margin-bottom: 14px;
}

.about-team__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.about-team__subtitle {
    font-size: 1.05rem;
    color: #4a5a71;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.about-team__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(39, 54, 84, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-team__photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-team__content {
    padding: 20px 18px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1 0 auto;
}

.about-team__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 6px;
}

.about-team__role {
    font-size: 0.95rem;
    color: #5d6a83;
    line-height: 1.5;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8px;
    max-width: 90%;
    margin: 0 auto;
}

.about-team__cta {
    margin: 18px 0 0;
    padding: 14px 0;
    border: none;
    border-radius: 0;
    background: #e94f9d;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-team__cta:hover,
.about-team__cta:focus {
    background-color: #d63f8b;
    transform: translateY(-1px);
}

.doctor-profile-modal {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(15, 24, 46, 0.78);
    backdrop-filter: blur(6px);
    z-index: 1100;
    padding: 60px 20px 80px;
    transition: opacity 0.25s ease;
    opacity: 0;
    overflow-y: auto;
}

.doctor-profile-modal.is-visible {
    display: block;
    opacity: 1;
}

.doctor-profile-modal__content {
    position: relative;
    width: min(520px, 95vw);
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 54px 50px;
    text-align: center;
    box-shadow: 0 40px 90px rgba(20, 31, 56, 0.3);
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border: 1px solid rgba(124, 77, 255, 0.18);
    position: relative;
}

.doctor-profile-modal__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #7c4dff 0%, #e94f9d 40%, #23b684 100%);
}

.doctor-profile-modal.is-visible .doctor-profile-modal__content {
    transform: translateY(0);
    opacity: 1;
}

.doctor-profile-modal__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    color: #a0aac0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.doctor-profile-modal__close:hover,
.doctor-profile-modal__close:focus {
    color: #7c4dff;
    transform: scale(1.1);
}

.doctor-profile-modal__image {
    width: 190px;
    height: 230px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 24px 45px rgba(30, 43, 72, 0.2);
    margin-bottom: 28px;
    border: 4px solid rgba(233, 79, 157, 0.12);
}

.doctor-profile-modal__name {
    font-size: 1.7rem;
    font-weight: 700;
    color: #121b33;
    margin-bottom: 8px;
    letter-spacing: 0.015em;
}

.doctor-profile-modal__role {
    font-size: 0.95rem;
    color: #7c4dff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 28px;
}

.doctor-profile-modal__bio {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #405065;
    text-align: justify;
    text-align-last: left;
    max-width: 440px;
    margin: 0 auto;
}

.doctor-profile-modal__details {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    width: 100%;
    max-width: 440px;
    display: grid;
    gap: 14px;
}

.doctor-profile-modal__details li {
    background: rgba(124, 77, 255, 0.06);
    border: 1px solid rgba(124, 77, 255, 0.12);
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #2c3b52;
}

.doctor-profile-modal__details li span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #7c4dff;
    margin-bottom: 4px;
}

.doctor-profile-modal__footer {
    margin-top: 26px;
    font-size: 0.85rem;
    color: #7c879d;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .doctor-profile-modal {
        padding: 32px 16px 40px;
    }

    .doctor-profile-modal__content {
        padding: 38px 22px 32px;
    }

    .doctor-profile-modal__image {
        width: 150px;
        height: 190px;
    }

    .doctor-profile-modal__role {
        letter-spacing: 0.12em;
    }

    .doctor-profile-modal__details {
        gap: 12px;
    }

    .doctor-profile-modal__details li {
        font-size: 0.95rem;
    }
}

@media (max-width: 1200px) {
    .about-team__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .about-team {
        padding: 70px 0 60px;
    }

    .about-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-team__grid {
        grid-template-columns: 1fr;
    }

    .about-team__cta {
        margin: 0 20px 24px;
    }

    .doctor-profile-modal__content {
        padding: 32px 18px 30px;
    }

    .doctor-profile-modal__bio {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .doctor-profile-modal {
        padding: 28px 12px 32px;
    }

    .doctor-profile-modal__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 28px 16px 26px;
        box-sizing: border-box;
    }

    .doctor-profile-modal__close {
        top: 14px;
        right: 16px;
        font-size: 1.6rem;
    }

    .doctor-profile-modal__image {
        width: 135px;
        height: 168px;
    }

    .doctor-profile-modal__name {
        font-size: 1.45rem;
    }

    .doctor-profile-modal__role {
        letter-spacing: 0.1em;
        font-size: 0.85rem;
        margin-bottom: 22px;
    }

    .doctor-profile-modal__bio {
        font-size: 0.92rem;
    }

    .doctor-profile-modal__details li {
        font-size: 0.9rem;
        padding: 12px 12px;
    }

    .doctor-profile-modal__details li span {
        font-size: 0.72rem;
    }
}






@media (max-width: 480px) {


    .about-page__banner {
        padding: 0;
    }

    .pft-service-page__image {
        display: none;
    }


    .pft-service-page__text {
        padding-left: 70px;
    }


    .pft-service-page__title {
        font-size: 1.6rem;
        text-align: center;
        padding-right: 50px;
    }


    .service-test__list li {
        margin-bottom: 6px;
        text-align: left;
    }


    .pft-service-page__banner {
        padding: 0.9rem 1rem;
    }

    .pft-service-page__description {
        font-size: 1rem;

    }
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* ✅ 3 in first row */
    gap: 36px;
    justify-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Mobile: 1 per row */
@media (max-width: 640px) {
    .about-team__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}