* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --white: #fff;
    --black: #222;
    --green: #08887b;
    --light-green: #13aa9b;
    --blue: #022953;
    --golden: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gradient-blue: linear-gradient(135deg, #0077B6, #00B4D8);
    --gradient-blue-golden: linear-gradient(135deg, #FFD700 0%, #00B4D8 100%);
    --smokey-grey: #f9fafb;
    --grey: #4b5563;
    --yellow: #facc15;
    --bluish-black: #111827;
}

.blue {
    color: var(--blue);
}

.white{
    color: var(--white);
}

.green {
    color: var(--green);
    padding-right: 0.3rem;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: var(--black);
}

ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

p {
    margin-bottom: 0;
    /* color: var(--grey); */
    font-size: 1rem;
}

.btn {
    color: var(--blue);
    font-weight: 500;
    padding: 0.4rem 1rem;
    border: 1px solid var(--blue);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--gradient-blue);
    color: var(--white);
    border: 1px solid var(--blue);

}

header {
    position: sticky;
    z-index: 5;
    top: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .251);
    background: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1rem;
}

.navbar img {
    width: 15rem;
    height: 5rem;
}

.navbar ul {
    display: flex;
    gap: 2rem;
}

.call-to-action {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.call-to-action .book_btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-blue);
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    border: unset;
}

.call-to-action a:nth-last-of-type(1) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-blue);
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    border: unset;
}

.call-to-action a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue) !important;
    font-weight: 500;
    border-radius: 5px;
    padding: 0.4rem 1rem;
    transition: background 0.3s ease;
    border: 1px solid var(--blue);
    background: var(--white);
}

.call-to-action a:nth-of-type(2):hover {
    background: var(--gradient-blue-golden);
}

.homeSwiper .swiper-slide:nth-of-type(1) {
    background: #7bc0e594;
}

.home-banner-content h1 {
    font-size: 4rem;
    font-weight: 800;
}

.highlight {
    background: var(--gradient-blue);
    color: transparent;
    background-clip: text;
}

.services_section,
.testimonial,
.core_values,
.anti_aging_solutions,
.hair_care_solutions,
.contact-form-section {
    padding: 3rem 0;
    background: var(--smokey-grey);
}

.services_section .section_title,
.testimonial h4,
.consultation h4,
.core_values h4,
.team h4,
.treatment_process h4 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
}

.services_section p,
.testimonial p,
.consultation p,
.treatment_process p:nth-of-type(1) {
    text-align: center;
    margin: 0 auto;
    max-width: 50rem;
    font-size: 1.2rem;
    color: var(--grey);
}

.service_card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
}

.service_card p {
    font-size: 1rem;
    color: var(--grey);
}

.service_card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.service_features {
    margin-top: 1rem;
}

.service_features p {
    font-size: 0.9rem;
    line-height: 2rem;
    color: var(--grey);
}

.view-services-btn {
    align-items: center;
    color: var(--white) !important;
    font-weight: 500;
    background: var(--gradient-blue);
    border-radius: 5px;
    padding: 0.4rem 1rem;
    margin-top: 4rem;
}

.why-choose-us,
.team,
.treatment_process,
.review_sec {
    margin: 3rem 0;
}

.why-choose-us h4 {
    font-size: 2.2rem;
    font-weight: 700;
}

.why-choose-us .bi {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    padding: 0.4rem;
}

.why-choose-us .bi-hand-thumbs-up {
    color: #db2777;
    background: #fce7f3;
}

.why-choose-us .bi-moon-stars {
    color: #2563eb;
    background: #dbeafe;
}

.why-choose-us .bi-clipboard-heart {
    color: #3db469;
    background: #dcfce7;
}

.why-choose-us .bi-graph-up-arrow {
    color: #9333ea;
    background: #f3e8ff;
}

.testimonial_card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
}

.testimonial_card .bi-star-fill {
    color: var(--yellow);
}

.testimonial_card p {
    font-style: italic;
    font-size: 1rem;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid #222;
    width: fit-content;
    text-align: left;
    min-height: 18rem;
}

.client_info .client_name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    text-align: left;
    margin: unset;
    border-bottom: unset;
    padding: unset;
    min-height: unset;
}

.client_info .service_name {
    font-weight: 500;
    font-size: 1rem;
    color: var(--grey);
    text-align: left;
    margin: unset;
    border-bottom: unset;
    padding: unset;
    min-height: unset;
}

.consultation,
.signature_treatments {
    padding: 3rem 0;
    background: var(--gradient-blue);
}

.consultation h4 {
    color: #fff;
}

.consultation p {
    color: #fff !important;
}

.schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.schedule .bi{
    padding-right: 0.7rem;
}

.schedule a, .book_free {
    font-weight: 600;
    padding: 0.7rem 1rem;
    background: #fff;
    border-radius: 5px;
    color: #0090c4;
    border: unset;
    transition: all 0.3s ease;
}

.schedule a:hover {
    background: var(--gradient-blue);
    color: #fff;
    border: 1px solid var(--white);
}

.footer_section {
    padding: 3rem 0;
    background: var(--bluish-black);
    color: #fff;
}

.footer_section p,
.footer_section li a,
.footer_section li {
    font-size: 0.8rem;
    line-height: 2rem;
    color: #fff;
}

.location p {
    line-height: unset;
}

.about_page,
.services_page,
.testimonial_page,
.contact_page {
    background: #7bc0e53d;
    padding: 3rem 0;
}

.about_page h1,
.services_page h1,
.testimonial_page h1,
.contact_page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.about_page .sub-heading,
.core_values .sub-heading,
.team .sub-heading,
.services_page .sub-heading,
.testimonial_page .sub-heading,
.contact_page .sub-heading {
    text-align: center;
    margin: 0 auto;
    max-width: 45rem;
    color: var(--grey);
    font-size: 1.2rem;
}

.about_page h2 {
    font-size: 2rem;
    font-weight: 700;
}

.vision_mission {
    padding: 5rem 0;
}

.vision-mission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.vision {
    padding: 2rem;
    background: aliceblue;
    border-radius: 10px;
}

.mission {
    padding: 2rem;
    background: #ffe9b9;
    border-radius: 10px;
}

.vision h3,
.mission h3 {
    font-weight: 700;
    font-size: 1.5rem;
}

.core_values_list {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.core_value_item {
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    align-items: center;
}

.value_icon .bi {
    font-size: 2rem;
    color: var(--white);
}

.value_icon {
    background: var(--gradient-blue);
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.core_value_item h6 {
    font-size: 1.1rem;
    font-weight: 700;
}

.core_value_item p {
    min-height: 7.5rem;
}

.team .team_members {
    display: flex;
    gap: 5rem;
    justify-content: center;
    text-align: center;
}

.team .team_member {
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.team_member h5 {
    font-weight: 700;
    margin-top: 1rem;
}

.team_member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--green);
}

.team_member p:nth-of-type(2) {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey);
    margin-top: 1rem;
}

.team_member p:nth-of-type(3) {
    color: var(--grey);
    margin-top: 0.7rem;
}

.laser_treatment,
.acne_skin_care {
    padding: 3rem 0;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-blue);
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    border-radius: 50%;
}

.service-icon .bi {
    font-size: 3rem;
    color: #fff;
}

.laser_treatment h2,
.anti_aging_solutions h2,
.acne_skin_care h2,
.hair_care_solutions h2 {
    text-align: center;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.service-text {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem;
}

.service-text h2 {
    font-size: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.service-text p {
    margin-top: 2rem;
    color: var(--grey);
}

.service_details {
    display: flex;
    margin-top: 1rem;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.service_details p {
    margin-top: unset;
    font-size: 0.9rem;
    color: var(--grey);
}

.service_details .bi {
    font-size: 1.3rem;
    padding-right: 0.6rem;
}

.service_details .bi-clock {
    color: #3b82f6;
}

.service_details .bi-award {
    color: #22c55e;
}

.book_service {
    width: -webkit-fill-available;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid #00B4D8;
    color: transparent;
    background: var(--gradient-blue);
    background-clip: text;
    font-weight: 500;
    margin-top: 1rem;
}

.book_service:hover {
    background: #a2e4f1;
    color: var(--black);
}

.laser_treatment .col-lg-5,
.anti_aging_solutions .col-lg-5,
.acne_skin_care .col-lg-5,
.hair_care_solutions .col-lg-5 {
    flex: 0 0 auto;
    width: 48%;
}

.laser_treatment .col-lg-1,
.anti_aging_solutions .col-lg-1,
.acne_skin_care .col-lg-1,
.hair_care_solutions .col-lg-1 {
    flex: 0 0 auto;
    width: 2%;
}

.signature_treatments h2 {
    text-align: center;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.signature_treatments p {
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
}

.signature_treatments_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hydrafacial,
.vampire_facial,
.plasma_therapy {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

.hydrafacial .bi,
.vampire_facial .bi,
.plasma_therapy .bi {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto;
}

.vampire_facial h2,
.hydrafacial h2,
.plasma_therapy h2 {
    font-size: 1.2rem;
}

.vampire_facial p,
.hydrafacial p,
.plasma_therapy p {
    color: var(--grey);
    font-size: 1rem;
    padding-bottom: 1rem;
}

.vampire_facial ul,
.hydrafacial ul,
.plasma_therapy ul {
    text-align: left;
    color: var(--grey);
}

.vampire_facial ul li,
.hydrafacial ul li,
.plasma_therapy ul li {
    font-size: 0.9rem;
}

.vampire_facial ul li i,
.hydrafacial ul li i,
.plasma_therapy ul li i {
    font-size: 1rem !important;
    display: unset !important;
    background: unset !important;
}

.hydrafacial .book_service,
.vampire_facial .book_service,
.plasma_therapy .book_service {
    background: linear-gradient(135deg, #6fa9c8, #00B4D8);
    color: var(--white);
}

.hydrafacial .book_service:hover,
.vampire_facial .book_service:hover,
.plasma_therapy .book_service:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.treatment_steps_list {
    display: flex;
    gap: 2rem;
}

.treatment_item {
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    min-width: 260px;
}

.treatment_step {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.treatment_step p {
    color: var(--white) !important;
    font-weight: 700;
}

.treatment_item h6 {
    font-weight: 700;
    font-size: 1.1rem;
}

.treatment_item p {
    font-size: 1rem !important;
}

.testimonial_stats {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem;
    max-width: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 3rem;
    color: #f272b3;
}

.stars {
    color: #facc15;
    font-size: 1.5rem;
    margin: 0 0 0.7rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    min-height: 16rem;
}

.user-info {
    border-top: 1px solid #e4e4e4;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-name {
    font-weight: 600;
    font-size: 1rem;
}

.verified {
    display: inline-flex;
    align-items: center;
    background: #e6fff1;
    color: #00a86b;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 1rem;
    font-weight: 500;
    margin-left: 1rem;
}

.verified::before {
    content: "✔";
    font-size: 0.7rem;
    margin-right: 0.5rem;
}

.user-meta {
    font-size: 0.9rem;
    color: #777;
}

.treatment {
    color: #e11d48;
    font-weight: 500;
    font-size: 0.9rem;
}

.date {
    font-size: 0.8rem;
    color: #999;
}

.contact-icons {
    gap: 3rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con_whatsapp {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 10px;
}

.con_call {
    padding: 0.6rem 1.5rem;
    border: 1px solid #00a0cd;
    border-radius: 10px;
    background: var(--gradient-blue);
    color: transparent;
    background-clip: text;
}
.contact_details{
    margin:3rem 0
}
.contact_details_content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.office_address{
    max-width: 450px;
}
.contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card {
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      padding: 24px;
      width: 250px;
      text-align: center;
    }

    .card .icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    }

    .card .icon img {
      width: 28px;
      height: 28px;
    }

    .card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #111827;
    }

    .card p {
      font-size: 14px;
      color: #374151;
      margin: 4px 0;
      line-height: 1.5;
    }

    /* .highlight {
      background-color: #e0f2fe;
      color: #1d4ed8;
      display: inline-block;
      padding: 4px 10px;
      font-size: 13px;
      border-radius: 6px;
      margin-top: 8px;
    } */

.contact_form h6, .location h6 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact_form p {
    color: #555;
    margin-bottom: 1rem;
}

.contact_form, .form_location {
    background: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact_form .form-row {
    display: flex;
    gap: 1rem;
}

.contact_form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.contact_form label {
    margin-bottom: 6px;
}

.contact_form input,.contact_form select,.contact_form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact_form input:focus,.contact_form select:focus,.contact_form textarea:focus {
    border-color: #000;
}

.contact_form textarea {
    resize: none;
    height: 100px;
}

.submit-btn {
    background-color: #000;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

.quick_whatsapp{
    padding: 0.5rem;
    border-radius: 10px;
    background: #22c55e;
    text-align: center;
}

.quick_whatsapp:hover{
    background: #279b51;
}

.quick_call{
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
}

.quick_call:hover{
    background: #b4e4f1;
}