* {
  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);

}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 999;
  /* keep it on top */
}

.burger span {
  width: 2.5rem;
  height: 3px;
  background: var(--blue);
  transition: 0.3s;
}

/* Rotate and Cross Animation */
.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle span:nth-child(2) {
  opacity: 0;
}

.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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,
.thank_you {
  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: 60rem;
  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;
}

.footer_section h6 {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  width: fit-content;
}

.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;
  flex-wrap: wrap;
  /* allow items to wrap to new lines */
}

.core_value_item {
  flex: 1 1 calc(25% - 1rem);
  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: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.signature_treatments_list>div {
  flex: 1 1 calc(33.333% - 2rem);
  /* desktop: 3 per row */
}

.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;
  color: #222;
}

.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: 1rem;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
}

.treatment_item {
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex: 1 1 calc(20% - 1rem);
  text-align: center;
  min-width: 100px;
}

.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 {
  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;
}

.map {
  width: 500px;
  height: 350px;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.banner-content-section {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  color: #fff;
  flex-wrap: wrap;
  gap: 40px;
}

.banner-content {
  flex: 1;
  padding-right: 40px;
  min-width: 300px;
}

.banner-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: .1em .1em 0 hsla(0, 0%, 42%, 0.404);
}

.banner-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  text-shadow: .1em .1em 0 hsla(0, 0%, 40%, 0.43);
}

.form-container {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  max-width: 450px;
  width: 100%;

}

.form-container h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group textarea {
  resize: none;
  height: 60px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group.half {
  flex: 1;
}

.form-container button {
  width: 100%;
  padding: 1rem;
  background: black;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background: #04a3ff;
}

@media (max-width: 900px) {
  .banner-content-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;

  }

  .banner-content {
    padding: 0;
    margin-bottom: 30px;
  }

  .form-container {
    margin: 0;

  }

  .form-row {
    flex-direction: column;
  }

  .form-row .form-group.half {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .banner-content h1 {
    font-size: 1.7rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .form-container {
    padding: 20px;
  }

  .form-container h2 {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.75em;
    padding: 8px;
  }

  .form-group textarea {
    height: 40px;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group select::placeholder {
    font-size: 0.7rem;
  }

  .form-container button {
    font-size: 0.9rem;
    padding: 0.8rem;
    scale: 0.8;
  }
}

/* treatment card section */

.treatment-cards-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.treatment-section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #00b4ff;
  font-weight: 600;
  margin-bottom: 30px;
}

.swiper {
  padding: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.treatment-card {
  width: 100%;
  max-width: 300px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-left: 35px;
}

.treatment-card:hover {
  transform: translateY(-5px);
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.treatment-head {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.treatment-card-btn {
  display: inline-block;
  background: #00b0ff;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  width: 100%;
}

.treatment-card-btn:hover {
  background: white;
  color: #00b0ff;
  border: 1px solid #00b0ff;
}

@media (max-width: 768px) {
  .treatment-section-heading {
    font-size: 1.6rem;
  }

  .treatment-head {
    font-size: 1rem;
  }
}

/* book now */
.act-fast-btn {
  display: inline-block;
  background: rgb(0, 0, 0);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: 0.3s;
  font-weight: light;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .act-fast-btn {
    scale: 0.8;
  }
}

.act-fast-btn:hover {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: rgb(0, 174, 255);
}

/* book now box */
.book-appointment-section {
  background-image: linear-gradient(to right, rgb(4, 171, 255), rgb(10, 247, 255));
  color: rgb(255, 255, 255);
  padding: 3rem 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.book-appointment-content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);

}

.book-appointment-content h4 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}

.book-appointment-button {
  width: fit-content;
  background-color: #00a6ff;
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  align-items: center;
  text-shadow: .1em .1em 0 hsl(200 50% 30%);
}

.book-appointment-button:hover {
  background-color: #00c3ff;
}

.plus-circle {
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}


@media (max-width: 768px) {
  .book-appointment-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }

  .book-appointment-content h2 {
    font-size: 28px;
  }

  .book-appointment-content p {
    font-size: 14px;
  }

  .book-appointment-button {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
  }

  .plus-circle {
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin-right: 10px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

@media (max-width: 768px) {
  .popup-overlay {
    scale: 0.8;
  }
}

.popup-content {
  background-image: linear-gradient(to right, rgb(160, 242, 255), rgba(0, 255, 242, 0.535));
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: black;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-content .form-heading {
  color: black;
}

.p0p-form-label {
  color: black;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 30px;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
}

/* Optional: Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#popupForm .form-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* committed to section */
.committed-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 0 20px;
  background: white;
  gap: 40px;
  flex-wrap: wrap;
}

.committed-section-left-img {
  flex: 1;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.committed-section-bg-img {
  width: 90%;
  height: auto;
  object-fit: cover;
  opacity: 0.7;
  padding-left: 2rem;
}

.committed-section-overlay-img {
  position: absolute;
  left: 73%;
  top: 24rem;
  transform: translateY(-60%);
  width: 22%;
  height: auto;
  border-radius: 20px;
  border: 5px solid white;
  transition: all 0.3s ease;
}

.committed-section-content {
  flex: 1;
  max-width: 50%;
  padding-right: 80px;
  margin-left: -30px;
}

.committed-section-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 179, 255);
  margin-bottom: 30px;
}

.committed-section-content p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.committed-section-content a {
  display: inline-block;
  background: rgba(0, 179, 255, 0.798);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.committed-section-content a:hover {
  background: white;
  border: solid 1px;
  color: rgb(0, 179, 255);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media (max-width: 768px) {
  .committed-section {
    flex-direction: row;
    gap: 20px;
  }

  .committed-section-left-img {
    max-width: 50%;
    flex: 1;
    justify-content: flex-start;
  }

  .committed-section-bg-img {
    width: 65%;
    margin-left: 0;
    margin-top: 20px;
  }

  .committed-section-overlay-img {
    width: 25%;
    bottom: 30px;
    left: 75%;
    transform: translateX(-50%);
    border-width: 6px;
  }

  .committed-section-content {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding-right: 0;
  }

  .committed-section-content h2 {
    font-size: 1.6rem;
  }

  @media (max-width: 900px) {
    .committed-section-content h2 {
      font-size: 1rem;
    }
  }


  .committed-section-content p {
    font-size: 1rem;
  }

  @media (max-width: 900px) {
    .committed-section-content p {
      font-size: 0.8rem;
    }
  }

  .committed-section-content a {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

.summary-h2 {
  color: rgb(0, 166, 255);
}

/* course_content */
.land_page_content {
  padding: 3rem 0;
  position: relative;
}

.course_content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.course_content p {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .land_page-content {
    margin-left: 0px;
    padding: 10px;
  }
}


.testimonial {
  background: white;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 1rem;
}

.testimonial-headding {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  margin: 20px 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testmonial-card {
  background: white;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  max-width: 20rem;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  scale: 0.85;
}

.testmonial-card:hover {
  transform: translateY(-5px);
}

.treatment-name {
  color: #666;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-text {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left !important;
}

.rating {
  color: #f5a623;
  font-size: 1.2rem;
}



@media (max-width: 900px) {
  .testimonial {
    padding: 1.5rem 0.9rem;
  }

  .testimonial-headding {
    font-size: 1.6rem;
  }

  .testimonial-track {
    gap: 1rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .testmonial-card {
    scale: 0.9;
    padding: 1rem;
    max-width: 16rem;
  }

  .treatment-name {
    font-size: 0.9rem;
  }

  .review-text {
    font-size: 0.75rem;
  }

  .rating {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonial {
    padding: 1rem 0.5rem;
  }

  .testimonial-track {
    gap: 0.8rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .testmonial-card {
    scale: 0.85;
    max-width: 14rem;
    padding: 0.8rem;
  }

  .testimonial-headding h2 {
    font-size: 1.4rem;
  }

  .treatment-name {
    font-size: 0.85rem;
  }

  .review-text {
    font-size: 0.7rem;
  }

  @media (max-width: 900px) {
    .review-text {
      font-size: 0.85rem !important;
    }
  }

  .rating {
    font-size: 0.9rem;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.faq-section {
  padding: 60px 20px;
  background: #fff;
}

.faq-image {
  width: 100%;
  border-radius: 12px;
  margin-right: -50px;
}

.faq-headding {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 2rem;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-highlight {
  color: #00bbff;
}

.faq-headding-div {
  text-align: left;
}

.faq-section .accordion-button {
  background: #ffffff !important;
  color: #222;
  font-weight: 500;
  font-size: 1.05rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .faq-section .accordion-button {
    font-size: 0.7rem;
  }
}

.faq-section .accordion-button:hover {
  color: #00ccff;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #00c3ff;
  background: #fff !important;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  color: #555;
  line-height: 1.6;
  background: #fafafa;
  border-left: 3px solid #0aa9ff;
  padding: 1rem 1.2rem;
  border-radius: 0 0 8px 8px;
}

.faq-section .accordion-item {
  margin-bottom: 12px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.217);
  overflow: hidden;
}

/* hair treatment crtaousel*/
.hair-treatment-section {
  background: linear-gradient(135deg, #0099ff59, #03ffd5);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: 30px;

}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.carousel-image {
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(50, 0, 100, 0.2);
  transition: all 0.6s ease;
}

.carousel-title {
  font-size: 2rem;
  font-weight: 700;
  color: #31004b;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}

.carousel-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #0d00ff);
  border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;

}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  scale: 2;
  margin-bottom: 170px;

}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .carousel-image {
    margin-bottom: 25px;
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: auto;
    bottom: 10px;
    transform: none;
    margin: 0 5px;
  }
}

/* why choose*/

.why-choose-section {
  background: linear-gradient(135deg, hsl(195, 100%, 50%), #ffffff);
  position: relative;
  margin-top: 30px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.choose-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.choose-box::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #f6e58d, #f9ca24);
  z-index: 0;
  transition: width 0.4s ease;
  border-radius: 16px;
}

.choose-box:hover::before {
  width: 100%;
}

.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.choose-box .icon {
  font-size: 2rem;
  color: #ffbf00;
  background: rgba(255, 215, 0, 0.15);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.choose-box h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.choose-box p {
  font-size: 0.95rem;
  color: #555;
  position: relative;
  z-index: 1;
  margin: 0;
}

.choose-box:hover .icon {
  background: #00d5ff;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }

  .choose-box {
    padding: 25px 15px;
  }

  .choose-box h5 {
    font-size: 1.05rem;
  }
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #06b6d4;
  background: white;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Honeypot #1 - Position off-screen */
.honeypot-1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Honeypot #2 - Display none */
.honeypot-2 {
  display: none;
}

/* Honeypot #3 - Visibility hidden with zero dimensions */
.honeypot-3 {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}

/* Honeypot #4 - Looks real but positioned off-screen */
.honeypot-4 {
  position: absolute;
  top: -5000px;
  left: -5000px;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.required {
  color: #e74c3c;
}

.hair-care-section {
  background: linear-gradient(135deg, #8ee7f1, #00d2c4);
  padding: 3rem 0;
  color: #000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: #222;
  font-size: 18px;
  margin-bottom: 50px;
}

.hair-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.hair-img img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 0 20px;
}

.hair-img {
  flex: 1 1 50%;
}

.hair-content {
  flex: 1 1 50%;
  padding: 40px;
}

.hair-content h3 {
  color: #0a0064;
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
}

.hair-content h3::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #00d2c4;
  display: block;
  margin-top: 5px;
}

.hair-content p {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hair-slide {
    flex-direction: column;
    text-align: center;
  }

  .hair-img img {
    border-radius: 20px 20px 0 0;
  }

  .hair-content {
    padding: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/*  */

.hair-loss-section {
  padding: 3rem 0;
  background: #fafafa;
}

.hair-loss-section h2 {
  text-align: center;
  color: #222;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hair-loss-section .sub {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.hair-loss-section .card {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.hair-loss-section .card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hair-loss-section .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hair-loss-section .card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
  line-height: 1.5;
}

/* Causes (red X bullets) */
.hair-loss-section .red-card ul li::before {
  content: "✖";
  color: #e74c3c;
  position: absolute;
  left: 0;
}

/* Signs (green tick bullets) */
.hair-loss-section .green-card ul li::before {
  content: "✔";
  color: #27ae60;
  position: absolute;
  left: 0;
}

/* Color difference in headings */
.hair-loss-section .red-card h3 {
  color: #e74c3c;
}

.hair-loss-section .green-card h3 {
  color: #27ae60;
}

/* Tip box style */
.tip-box {
  margin-top: 15px;
  font-size: 14px;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 4px solid;
}

.red-tip {
  border-color: #e74c3c;
  color: #c0392b;
}

.green-tip {
  border-color: #27ae60;
  color: #1e8449;
}

.icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.icon-wrap .check-icon {
  width: 4rem;
  height: 4rem;
  border: 3px solid #0084bd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-icon span {
  font-size: 3rem;
  color: var(--gradient-blue);
}

.thank_you h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtext {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.thank_you_card {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thank_you_card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.thank_you_card .steps {
  text-align: left;
}

.thank_you_card .step-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.thank_you_card .step-number {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-right: 0.8rem;
}

.thank_you_btn_group {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thank_you_btn_group .btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.thank_you_btn_group .home-btn {
  background: var(--gradient-blue);
  color: #fff;
}

.thank_you_btn_group .home-btn:hover {
  background: var(--gradient-blue);
}

.thank_you_btn_group .service-btn {
  border: 2px solid #0084bd;
  color: var(--gradient-blue);
}

.thank_you_btn_group .service-btn:hover {
  background: var(--gradient-blue);
  color: #fff;
}

.footer-text {
  text-align: center;
  margin-top: 35px;
  color: #666;
}

.footer-text .whatsapp-link {
  color: var(--gradient-blue) !important;
  font-weight: 600;
  text-decoration: none;
}

.haircare_btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.haircare_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

* {
  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);

}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 999;
  /* keep it on top */
}

.burger span {
  width: 2.5rem;
  height: 3px;
  background: var(--blue);
  transition: 0.3s;
}

/* Rotate and Cross Animation */
.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle span:nth-child(2) {
  opacity: 0;
}

.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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,
.thank_you {
  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: 60rem;
  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;
}

.footer_section h6 {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  width: fit-content;
}

.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;
  flex-wrap: wrap;
  /* allow items to wrap to new lines */
}

.core_value_item {
  flex: 1 1 calc(25% - 1rem);
  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: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.signature_treatments_list>div {
  flex: 1 1 calc(33.333% - 2rem);
  /* desktop: 3 per row */
}

.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;
  color: #222;
}

.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: 1rem;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
}

.treatment_item {
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex: 1 1 calc(20% - 1rem);
  text-align: center;
  min-width: 100px;
}

.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 {
  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;
}

.map {
  width: 500px;
  height: 350px;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.banner-content-section {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  color: #fff;
  flex-wrap: wrap;
  gap: 40px;
}

.banner-content {
  flex: 1;
  padding-right: 40px;
  min-width: 300px;
}

.banner-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: .1em .1em 0 hsla(0, 0%, 42%, 0.404);
}

.banner-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  text-shadow: .1em .1em 0 hsla(0, 0%, 40%, 0.43);
}

.form-container {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  max-width: 450px;
  width: 100%;

}

.form-container h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group textarea {
  resize: none;
  height: 60px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group.half {
  flex: 1;
}

.form-container button {
  width: 100%;
  padding: 1rem;
  background: black;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background: #04a3ff;
}

@media (max-width: 900px) {
  .banner-content-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;

  }

  .banner-content {
    padding: 0;
    margin-bottom: 30px;
  }

  .form-container {
    margin: 0;

  }

  .form-row {
    flex-direction: column;
  }

  .form-row .form-group.half {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .banner-content h1 {
    font-size: 1.7rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .form-container {
    padding: 20px;
  }

  .form-container h2 {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.75em;
    padding: 8px;
  }

  .form-group textarea {
    height: 40px;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group select::placeholder {
    font-size: 0.7rem;
  }

  .form-container button {
    font-size: 0.9rem;
    padding: 0.8rem;
    scale: 0.8;
  }
}

/* treatment card section */

.treatment-cards-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.treatment-section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #00b4ff;
  font-weight: 600;
  margin-bottom: 30px;
}

.swiper {
  padding: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.treatment-card {
  width: 100%;
  max-width: 300px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-left: 35px;
}

.treatment-card:hover {
  transform: translateY(-5px);
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.treatment-head {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.treatment-card-btn {
  display: inline-block;
  background: #00b0ff;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.treatment-card-btn:hover {
  background: white;
  color: #00b0ff;
  border: 1px solid #00b0ff;
}

@media (max-width: 768px) {
  .treatment-section-heading {
    font-size: 1.6rem;
  }

  .treatment-head {
    font-size: 1rem;
  }
}

/* book now */
.act-fast-btn {
  display: inline-block;
  background: rgb(0, 0, 0);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: 0.3s;
  font-weight: light;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .act-fast-btn {
    scale: 0.8;
  }
}

.act-fast-btn:hover {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: rgb(0, 174, 255);
}

/* book now box */
.book-appointment-section {
  background-image: linear-gradient(to right, rgb(4, 171, 255), rgb(10, 247, 255));
  color: rgb(255, 255, 255);
  padding: 3rem 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.book-appointment-content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);

}

.book-appointment-content h4 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}

.book-appointment-button {
  width: fit-content;
  background-color: #00a6ff;
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  align-items: center;
  text-shadow: .1em .1em 0 hsl(200 50% 30%);
}

.book-appointment-button:hover {
  background-color: #00c3ff;
}

.plus-circle {
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}


@media (max-width: 768px) {
  .book-appointment-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }

  .book-appointment-content h2 {
    font-size: 28px;
  }

  .book-appointment-content p {
    font-size: 14px;
  }

  .book-appointment-button {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
  }

  .plus-circle {
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin-right: 10px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

@media (max-width: 768px) {
  .popup-overlay {
    scale: 0.8;
  }
}

.popup-content {
  background-image: linear-gradient(to right, rgb(160, 242, 255), rgba(0, 255, 242, 0.535));
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: black;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-content .form-heading {
  color: black;
}

.p0p-form-label {
  color: black;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 30px;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
}

/* Optional: Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#popupForm .form-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* committed to section */
.committed-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 0 20px;
  background: white;
  gap: 40px;
  flex-wrap: wrap;
}

.committed-section-left-img {
  flex: 1;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.committed-section-bg-img {
  width: 90%;
  height: auto;
  object-fit: cover;
  opacity: 0.7;
  padding-left: 2rem;
}

.committed-section-overlay-img {
  position: absolute;
  left: 73%;
  top: 24rem;
  transform: translateY(-60%);
  width: 22%;
  height: auto;
  border-radius: 20px;
  border: 5px solid white;
  transition: all 0.3s ease;
}

.committed-section-content {
  flex: 1;
  max-width: 50%;
  padding-right: 80px;
  margin-left: -30px;
}

.committed-section-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 179, 255);
  margin-bottom: 30px;
}

.committed-section-content p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.committed-section-content a {
  display: inline-block;
  background: rgba(0, 179, 255, 0.798);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.committed-section-content a:hover {
  background: white;
  border: solid 1px;
  color: rgb(0, 179, 255);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media (max-width: 768px) {
  .committed-section {
    flex-direction: row;
    gap: 20px;
  }

  .committed-section-left-img {
    max-width: 50%;
    flex: 1;
    justify-content: flex-start;
  }

  .committed-section-bg-img {
    width: 65%;
    margin-left: 0;
    margin-top: 20px;
  }

  .committed-section-overlay-img {
    width: 25%;
    bottom: 30px;
    left: 75%;
    transform: translateX(-50%);
    border-width: 6px;
  }

  .committed-section-content {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding-right: 0;
  }

  .committed-section-content h2 {
    font-size: 1.6rem;
  }

  @media (max-width: 900px) {
    .committed-section-content h2 {
      font-size: 1rem;
    }
  }


  .committed-section-content p {
    font-size: 1rem;
  }

  @media (max-width: 900px) {
    .committed-section-content p {
      font-size: 0.8rem;
    }
  }

  .committed-section-content a {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

.summary-h2 {
  color: rgb(0, 166, 255);
}

/* course_content */
.land_page_content {
  padding: 3rem 0;
  position: relative;
}

.course_content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.course_content p {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .land_page-content {
    margin-left: 0px;
    padding: 10px;
  }
}


.testimonial {
  background: white;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 1rem;
}

.testimonial-headding {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  margin: 20px 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testmonial-card {
  background: white;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  max-width: 20rem;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  scale: 0.85;
}

.testmonial-card:hover {
  transform: translateY(-5px);
}

.treatment-name {
  color: #666;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-text {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left !important;
}

.rating {
  color: #f5a623;
  font-size: 1.2rem;
}



@media (max-width: 900px) {
  .testimonial {
    padding: 1.5rem 0.9rem;
  }

  .testimonial-headding {
    font-size: 1.6rem;
  }

  .testimonial-track {
    gap: 1rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .testmonial-card {
    scale: 0.9;
    padding: 1rem;
    max-width: 16rem;
  }

  .treatment-name {
    font-size: 0.9rem;
  }

  .review-text {
    font-size: 0.75rem;
  }

  .rating {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonial {
    padding: 1rem 0.5rem;
  }

  .testimonial-track {
    gap: 0.8rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .testmonial-card {
    scale: 0.85;
    max-width: 14rem;
    padding: 0.8rem;
  }

  .testimonial-headding h2 {
    font-size: 1.4rem;
  }

  .treatment-name {
    font-size: 0.85rem;
  }

  .review-text {
    font-size: 0.7rem;
  }

  @media (max-width: 900px) {
    .review-text {
      font-size: 0.85rem !important;
    }
  }

  .rating {
    font-size: 0.9rem;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.faq-section {
  padding: 60px 20px;
  background: #fff;
}

.faq-image {
  width: 100%;
  border-radius: 12px;
  margin-right: -50px;
}

.faq-headding {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 2rem;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-highlight {
  color: #00bbff;
}

.faq-headding-div {
  text-align: left;
}

.faq-section .accordion-button {
  background: #ffffff !important;
  color: #222;
  font-weight: 500;
  font-size: 1.05rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .faq-section .accordion-button {
    font-size: 0.7rem;
  }
}

.faq-section .accordion-button:hover {
  color: #00ccff;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #00c3ff;
  background: #fff !important;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  color: #555;
  line-height: 1.6;
  background: #fafafa;
  border-left: 3px solid #0aa9ff;
  padding: 1rem 1.2rem;
  border-radius: 0 0 8px 8px;
}

.faq-section .accordion-item {
  margin-bottom: 12px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.217);
  overflow: hidden;
}

/* hair treatment crtaousel*/
.hair-treatment-section {
  background: linear-gradient(135deg, #0099ff59, #03ffd5);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: 30px;

}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.carousel-image {
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(50, 0, 100, 0.2);
  transition: all 0.6s ease;
}

.carousel-title {
  font-size: 2rem;
  font-weight: 700;
  color: #31004b;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}

.carousel-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #0d00ff);
  border-radius: 10px;
}




.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;

}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  scale: 2;
  margin-bottom: 170px;

}


@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .carousel-image {
    margin-bottom: 25px;
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: auto;
    bottom: 10px;
    transform: none;
    margin: 0 5px;
  }
}

/* why choose*/

.why-choose-section {
  background: linear-gradient(135deg, hsl(195, 100%, 50%), #ffffff);
  position: relative;
  margin-top: 30px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.choose-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.choose-box::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #f6e58d, #f9ca24);
  z-index: 0;
  transition: width 0.4s ease;
  border-radius: 16px;
}

.choose-box:hover::before {
  width: 100%;
}

.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.choose-box .icon {
  font-size: 2rem;
  color: #ffbf00;
  background: rgba(255, 215, 0, 0.15);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.choose-box h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.choose-box p {
  font-size: 0.95rem;
  color: #555;
  position: relative;
  z-index: 1;
  margin: 0;
}

.choose-box:hover .icon {
  background: #00d5ff;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }

  .choose-box {
    padding: 25px 15px;
  }

  .choose-box h5 {
    font-size: 1.05rem;
  }
}


.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #06b6d4;
  background: white;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Honeypot #1 - Position off-screen */
.honeypot-1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Honeypot #2 - Display none */
.honeypot-2 {
  display: none;
}

/* Honeypot #3 - Visibility hidden with zero dimensions */
.honeypot-3 {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}

/* Honeypot #4 - Looks real but positioned off-screen */
.honeypot-4 {
  position: absolute;
  top: -5000px;
  left: -5000px;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.required {
  color: #e74c3c;
}

.hair-care-section {
  background: linear-gradient(135deg, #8ee7f1, #00d2c4);
  padding: 3rem 0;
  color: #000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: #222;
  font-size: 18px;
  margin-bottom: 50px;
}

.hair-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.hair-img img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 0 20px;
}

.hair-img {
  flex: 1 1 50%;
}

.hair-content {
  flex: 1 1 50%;
  padding: 40px;
}

.hair-content h3 {
  color: #0a0064;
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
}

.hair-content h3::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #00d2c4;
  display: block;
  margin-top: 5px;
}

.hair-content p {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hair-slide {
    flex-direction: column;
    text-align: center;
  }

  .hair-img img {
    border-radius: 20px 20px 0 0;
  }

  .hair-content {
    padding: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/*  */

.hair-loss-section {
  padding: 3rem 0;
  background: #fafafa;
}

.hair-loss-section h2 {
  text-align: center;
  color: #222;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hair-loss-section .sub {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.hair-loss-section .card {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.hair-loss-section .card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hair-loss-section .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hair-loss-section .card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
  line-height: 1.5;
}

/* Causes (red X bullets) */
.hair-loss-section .red-card ul li::before {
  content: "✖";
  color: #e74c3c;
  position: absolute;
  left: 0;
}

/* Signs (green tick bullets) */
.hair-loss-section .green-card ul li::before {
  content: "✔";
  color: #27ae60;
  position: absolute;
  left: 0;
}

/* Color difference in headings */
.hair-loss-section .red-card h3 {
  color: #e74c3c;
}

.hair-loss-section .green-card h3 {
  color: #27ae60;
}

/* Tip box style */
.tip-box {
  margin-top: 15px;
  font-size: 14px;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 4px solid;
}

.red-tip {
  border-color: #e74c3c;
  color: #c0392b;
}

.green-tip {
  border-color: #27ae60;
  color: #1e8449;
}

.icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.icon-wrap .check-icon {
  width: 4rem;
  height: 4rem;
  border: 3px solid #0084bd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-icon span {
  font-size: 3rem;
  color: var(--gradient-blue);
}

.thank_you h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtext {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.thank_you_card {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thank_you_card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.thank_you_card .steps {
  text-align: left;
}

.thank_you_card .step-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.thank_you_card .step-number {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-right: 0.8rem;
}

.thank_you_btn_group {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thank_you_btn_group .btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.thank_you_btn_group .home-btn {
  background: var(--gradient-blue);
  color: #fff;
}

.thank_you_btn_group .home-btn:hover {
  background: var(--gradient-blue);
}

.thank_you_btn_group .service-btn {
  border: 2px solid #0084bd;
  color: var(--gradient-blue);
}

.thank_you_btn_group .service-btn:hover {
  background: var(--gradient-blue);
  color: #fff;
}

.footer-text {
  text-align: center;
  margin-top: 35px;
  color: #666;
}

.footer-text .whatsapp-link {
  color: var(--gradient-blue) !important;
  font-weight: 600;
  text-decoration: none;
}

.haircare_btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.haircare_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}
.testimonial .textimonial-name{
    color: #1ac6ff !important;
}