@font-face {
  font-family: 'GE SS Two Light';
  src: url('/assets/fonts/GE-SS-Two-Font-Family/GE SS Two Light.otf')
    format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'GE SS Two Medium';
  src: url('/assets/fonts/GE-SS-Two-Font-Family/GE SS Two Medium.otf')
    format('opentype');
  font-weight: 500;
  font-style: medium;
}
@font-face {
  font-family: 'GE SS Two Bold';
  src: url('/assets/fonts/GE-SS-Two-Font-Family/GE SS Two Bold.otf')
    format('opentype');
  font-weight: 600;
  font-style: bold;
}
@font-face {
  font-family: 'DIN Next LT Arabic Light';
  src: url('/assets/fonts/Din-Next-LT-Arabic-Font-Family/Din Next LT Arabic Regular.ttf')
    format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DIN Next LT Arabic Light';
  src: url('/assets/fonts/Din Next LT Arabic Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: medium;
}

@font-face {
  font-family: 'DIN Next LT Arabic Light';
  src: url('/assets/fonts/Din Next LT Arabic Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: medium;
}

/* Other headings (h2-h6) - Weight 600, Size 50px, Line height 68px */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'GE SS Two Bold', sans-serif !important;
  font-weight: 600 !important;
  /* Use !important to override user agent styles */
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: 'GE SS Two Bold', sans-serif !important;
  font-weight: 600 !important;
}

/* Paragraphs and other text - Weight 400, Size 30px, Line height 208% */
p,
a,
span,
div,
input,
input::placeholder,
a button,
select,
select::placeholder,
textarea,
textarea::placeholder,
button {
  font-family: 'DIN Next LT Arabic Light', sans-serif !important;
}

:root {
  --primary-color: #e4bb51;
  /* Gold */
  --secondary-color: #000000;
  --light-bg: #fffae6;
  --cream-bg: #fff5cf;
  --dark-text: #000000;
  --light-text: #ffffff;
  --accent-color: #e0c675;
  --gold-gradient: linear-gradient(135deg, #e4bb51 0%, #f2d272 100%);
  --beige-bg: #f5f0e6;
}

h1,
h2,
h3,
p,
a,
span,
div {
  direction: rtl;
  text-align: right !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  direction: rtl;
  text-align: right !important;
  background-color: #f8f8ff !important;
  line-height: 1.6;
  color: var(--dark-text);
  overflow-x: hidden;
}

.container {
  /* width: 90%;
  max-width: 1200px; */
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.cta-button-switch {
  color: #333;

  font-family: 'DIN Next LT Arabic Light', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 109px;
  background-color: transparent;
  border: 1px solid #c48600 !important;
  transition: all 0.3s ease;
}

.cta-button-switch {
  border-radius: 10px;
}

.top-bar,
.nav-links {
  background-color: none !important;
}

.cta-button {
  width: 209px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: var(--light-text);
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 16px;
  background: #e4bb51;
  /* box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.08), -2px -2px 10px 0px rgba(0, 0, 0, 0.08); */
}

a.cta-button {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  gap: 10px;
}

.cta-button i {
  margin-left: 8px;
}

.cta-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Header Styles - Updated based on image 2 */
header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 285px;
  flex-shrink: 0;

  background: url('/images/header-gradient.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.top-bar {
  padding: 0;
}

.top-bar .container {
  /* width: 95% !important; */
  /* max-width: 1728px; */
  height: 100px;
  margin: 0 auto !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-social-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  height: 45px;
  padding: 8px;
  width: 45px;
  border-radius: 100%;
  color: var(--secondary-color);
  background: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.social-icon img {
  width: 100%;
  height: 100%;
}

footer .social-icon {
  box-shadow: none;
}

.social-icon:hover {
  color: var(--primary-color);
}

.clinic-info {
  width: 290px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(255, 250, 230, 1);
}

.clinic-hours {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300 !important;
}

.clinic-promotion {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clinic-hours img {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.clinic-promotion span {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
}

.spring-offer {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-numbers {
  display: flex;
  gap: 15px;
}

.phone {
  color: #333;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone i {
  color: var(--primary-color);
}

.language-switch {
  padding: 5px 15px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--secondary-color);
  transition: all 0.3s;
}

.language-switch:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Main Navigation - Updated based on image 2 */
.main-nav {
  padding: 15px 0;
  background-color: var(--beige-bg);
}

.nav-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 110px !important;
  height: 113px !important;
  flex-shrink: 0;
  aspect-ratio: 110/113;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: #333;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 5px;
  top: 55px;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #333;
  font-family: 'Poppins' !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dropdown-menu a:hover {
  background-color: var(#f8f9fa);
  color: var(--primary-color);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background: rgba(255, 250, 230, 1);
  border-radius: 100%;
  width: 51px;
  height: 51px;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn img {
  height: 42px;
  width: 42px;
}

.search-btn:hover {
  color: var(--primary-color);
}

/* .hero-container {
  background: url('/images/curve-bg') no-repeat center / cover;
  width: 100%;
  height: 1503px;
} */

/* Hero Section - Updated based on image 2 */
.hero {
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/home-ar-bg.png') no-repeat center / cover;
  overflow: hidden;
}

.aboutUS-hero {
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/about-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
}

.aboutUS-hero h1 {
  width: 536px;
  color: #fff;
  font-size: 90px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100px;
  /* 111.111% */
  letter-spacing: -0.9px;
  padding-right: 5%;
}

.hero-content {
  max-width: 600px;
  padding-right: 5%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.hero h1 span {
  color: var(--primary-color);
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #fff;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  transform: scale(1.5, 1);
}

/* Experts Section */
.experts {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 0;
}

.experts .expert-text-container {
  z-index: 99;
  position: relative;
  width: 853px;
  max-width: 100%;
  height: 851px;
  flex-shrink: 0;
  border-radius: 30px 70px 70px 30px;
  background: #fff;
  box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.05);
  padding: 0 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.experts h2 {
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.experts-image {
  background-size: cover;
  background-position: center;
  z-index: 99;
  margin-right: -100px;
  margin-top: 15px;
}

.experts-image img {
  width: 757px;
  height: 851px;
  flex-shrink: 0;
  max-width: 100%;
  object-fit: cover;
}

.experts-description {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px;
  /* 62.4px */
}

/* MD Clinics Visit Section */
.md-visit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 99;
}

.md-visit {
  width: 1334px;
  height: 383px;
  flex-shrink: 0;
  border-radius: 44px;
  background-color: #f8f8ff;
  background: linear-gradient(
      90deg,
      rgba(228, 187, 81, 0.2) 0%,
      rgba(255, 255, 255, 0.94) 85.1%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    url('/images/md-visit-ar.png') lightgray -380.595px -166.929px / 145.792%
      232.084% no-repeat;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  /* margin: 0 0 90px 90px; */
  margin-bottom: 70px;
  text-align: center;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 44px;
  background-color: #f8f8ff;
}

.rate-ur-visit {
  color: rgba(228, 187, 81, 1);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.md-visit h2 {
  width: 782px;
  color: #333;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
}

.md-visit span {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.love-to-hear {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: -0.28px;
}

/* Appointment Section */

.appointment {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 372px;
  aspect-ratio: 865/186;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 40px 0;
  background-image: url('/images/floral_bkg_51_b_beige 1.png');
  background-size: cover;
  background-position: center;
}

.appointment .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100% !important;
}

.appointment .content {
  color: #fff;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  width: 881px;
  flex: 1;
  text-align: left;
}

.appointment h2 {
  width: 881px;
  color: #fff;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.appointment h3 {
  width: 881px;
  color: #fff;
  font-family: Poppins;
  font-size: 50px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  font-size: 1.5rem;
}

.appointment .button-container {
  flex-shrink: 0;
  margin-left: 30px;
}

.appointment-cta-button {
  width: 270px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 23px;
  background: #fff;
  color: #e4bb51;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 20px 50px;
}

.appointment-cta-button:hover {
  background-color: #e4bb51;
  border: 1px solid white;
  color: white;
}

/* Services Section */
.services {
  background-color: #f8f8ff;
  padding: 70px 0;
}

.services .container {
  max-width: 100% !important;
  width: auto !important;
  margin: 0 80px !important;
  padding: 0 15px;
}

.services h2 {
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.services h2 span {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  z-index: 99;
  position: relative;
  display: inline-block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 490px;
  height: 490px;
  flex-shrink: 0;
  border-radius: 35px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  position: absolute;
  bottom: 30px;
  /* Adjust this value to position vertically */
  left: 0;
  right: 0;
  width: 496px;
  color: #333;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.38px;
  padding: 20px;
  text-align: center !important;
  margin: 0;
  /* Remove default margin */
  background: none;
  /* Remove any background */
}

.service-card h3 span {
  color: #e4bb51;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.38px;
}

/* Optional: Add a subtle text shadow for better readability */
.service-card h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add hover effect */
.service-card:hover h3 {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.advanced-skincare {
  width: 1265px;
  color: #333;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 182%;
  /* 47.32px */
}
.payment-bg-section {
  position: relative;
  width: 100%;
  background: url('/images/payment-bg.png');
  padding: 70px 0;
}

.payment-plans {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100% !important;
}

.payment-image {
  width: 50%;
  text-align: left;
  padding-left: 40px;
}

.payment-image img {
  width: 704px;
  height: 583px;
  flex-shrink: 0;
  aspect-ratio: 64/53;
  max-width: 100%;
}

.payment-info {
  width: 667px;
  padding-right: 40px;
}

.payment-info h2 {
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  letter-spacing: -0.5px;
}

.payment-info h3 {
  margin-bottom: 40px;

  color: #333;
  font-family: 'Poppins ', sans-serif !important;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.payment-info span {
  color: #e4bb51;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.payment-partners {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feedback-comments-section textarea {
  font-size: 24px !important;
}

/* .payment-partners img {
  width: 206px;
  height: 86px;
  flex-shrink: 0;
  aspect-ratio: 103/43;
} */

.testimonials {
  background-color: #f8f8ff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  width: auto !important;
  max-width: 100% !important;
  margin: 0 100px;
  padding: 0 15px;
}

/* Background decorative elements */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20 Q50 0 80 20 Q100 50 80 80 Q50 100 20 80 Q0 50 20 20" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>')
    no-repeat;
  opacity: 0.1;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.1"/><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.1"/></svg>')
    no-repeat;
  opacity: 0.1;
}

.testimonials h2 {
  color: #333;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  margin-bottom: 50px;
  text-align: left;
}

.testimonials h2 span {
  color: var(--primary-color);
}

.testimonials-content {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 60px;
  align-items: center;
}

/* Testimonial Card */
.testimonial-card {
  width: 749px;
  height: 671px;
  flex-shrink: 0;
  padding: 40px 35px;
  border-radius: 50px;
  background: #fff5cf;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.05),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 99;
}

.quote-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 40px;
  margin-top: 60px;
  opacity: 0.8;
}

.testimonial-card h3 {
  color: #333;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.02px;
  text-transform: capitalize;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-card p {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stars {
  width: 144.625px;
  height: 26px;
  color: var(--primary-color);
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.dot {
  width: 9px;
  height: 9px;
  fill: rgba(166, 166, 166, 0.44);
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0px !important;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
.devices-hero.doc {
  background: url('/images/doctors-ar-bg.png') no-repeat 50% / cover;
}
:dir(rtl) .next-btn svg {
  transform: rotate(180deg);
}

.next-btn {
  position: absolute;
  left: 30px;
  top: 50px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, #c4a037 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.next-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Video Section */
.video-section {
  position: relative;
}

.video-container {
  position: relative;
  background: linear-gradient(135deg, #f8f6f0 0%, #ede8d8 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
}

.video-thumbnail {
  position: relative;
  z-index: 99;
  width: 749px;
  height: 671px;
  object-fit: cover;
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
  border-radius: 50px;
  background: #fff;
  flex-direction: column;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.05),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.05);
}

.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #c4a037 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Footer Section - Updated based on image 3 */
.footer {
  background-color: #fffae6;
  padding: 50px 0;
  color: var(--secondary-color);
  position: relative;
  z-index: 99;
}
/* 
.footer .container {
  width: auto !important;
  max-width: 100% !important;
  margin: 0 80px;
  padding: 0 15px;
} */

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer h2 {
  color: #333;
  font-size: 36px;
  width: fit-content;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-align: left;
  margin-bottom: 25px;
}

.contact-text {
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-text p span {
  color: #000;
  font-weight: 900;
}

.contact-text p {
  color: #333;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  /* 183.333% */
}

.contact-text strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-divider {
  width: 80%;
  height: 1px;
  background-color: #e0d9c5;
  margin: 25px 0;
}

.contact-details {
  margin-bottom: 0;
  width: 824px;
}

.email {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  /* 164.286% */
  margin-bottom: 0;
}

.footer-phone {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  /* 164.286% */
  display: flex;
  align-items: center;
  margin-bottom: 0px !important;
}

.phone {
  font-weight: 500;
}

.footer address {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 46px;
  margin-bottom: 20px !important;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-icon.dek {
  display: flex;
}
.footer-social .social-icon {
  width: 50px;
  height: 50px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.footer-social a img {
  width: 100%;
  height: 100%;
}

.quick-links {
  display: flex;
  width: 447px;
  height: 54px;
  /* justify-content: center; */
  align-items: center;
  flex-shrink: 0;
  text-align: right !important;
  margin-bottom: 30px !important;
}

.footer-links {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.footer-links ul {
  list-style: none;
  margin-bottom: 10px !important;
}

.footer-links li {
  margin-bottom: 15px;
  margin-left: 123px;
}

.footer-links a {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
}

.footer-links a:hover {
  color: var(--primary-color);
}
.line {
  flex-grow: 1;
  height: 3px;
  background-color: white;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}
.copyright > p {
  margin-bottom: 0 !important;
}

.footer-logo img {
  width: 250px;
  height: 250px;
  margin-bottom: 15px;
}

.arabic-text {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
  text-align: left;
}

.english-text {
  color: var(--primary-color);
  font-size: 0.95rem;
  text-align: left;
}

.copyright {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 46px;
  /* 191.667% */
  letter-spacing: 0.96px;
  text-align: left;
  padding-top: 20px;
}

/* About Hero Section */
.about-hero {
  background-color: #f8f8ff;
  margin-top: 1030px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="60" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="40" cy="90" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  padding: 70px 0;
}

.about-hero-bottom-flower {
  position: absolute;
  left: -350px;
  top: -100px;
}

.about-hero .container {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100% !important;
  margin: 0 60px;
  padding: 0 5px;
}

.about-hero-image {
  z-index: 99;
}

.about-hero-image img {
  width: 714px;
  height: 982px;
  border-radius: 30px;
}

.about-hero-content {
  width: 831px;
  text-align: left;
  margin-right: 50px;
}

.about-hero-content h1 {
  width: 723px;
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px !important;
}

.about-hero-content h1 span {
  color: #e4bb51 !important;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.about-hero-content p {
  width: 831px;
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 188%;
  text-align: justify;
  /* 52.64px */
}

.hero-content {
  flex: 1;
  max-width: 601px;
  text-align: right;
}

.hero-content h1 {
  text-align: right !important;
  color: #333;
  font-size: 90px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 100px !important;
  letter-spacing: -0.9px !important;
  margin-bottom: 30px !important;
}
.hero-content h1.hero-title.pr {
  margin-bottom: 175px !important;
}

.hero-highlight {
  color: #fff !important;
  font-size: 90px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 100px !important;
  letter-spacing: -0.9px !important;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding-top: 20px;
  padding-bottom: 70px;
  background-color: #f8f8ff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  z-index: 9;
  width: 508px;
  height: 497px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  text-align: center;
  padding: 40px 20px;
}

.values-container {
  max-width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.value-icon {
  width: 131px;
  height: 113px;
  flex-shrink: 0;
  border-radius: 23px;
  background: #e4bb51;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--light-text);
}

.value-card h3 {
  text-align: center !important;
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.value-card h3 span {
  /* width: 94px !important; */
  height: 46.795px !important;
  flex-shrink: 0;
  color: #e4bb51;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.value-card p {
  /* width: 455px; */
  color: #333;
  text-align: center !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 188%;
  /* 45.12px */
}

/* About Content Section */
.about-content {
  padding: 70px 0;
  background-color: #f8f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 100% !important;
}

.content-text h2 {
  width: 630px;
  color: #333;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 100% */
  letter-spacing: -0.6px;
}

.content-text h2 span {
  color: #c48600;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: -0.4px;
}

.content-text p {
  width: 760px;
  color: #333;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 208%;
  /* 62.4px */
}

.content-image img {
  position: relative;
  z-index: 99;
  width: 737px;
  height: 991px;
  flex-shrink: 0;
  border-radius: 30px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
}

.servicess-hero {
  width: 100%;
  height: 1300px;
  background-image: url('/images/services-ar-bg1.png');
  background-size: cover;
  position: absolute;
  z-index: 100px;
  top: 0;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  z-index: 9;
}

.servicess-hero-content {
  max-width: 600px;
  padding-right: 5%;
}

.servicess-hero h1 {
  width: 536px;
  color: #333;
  font-size: 90px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100px;
  /* 111.111% */
  letter-spacing: -0.9px;

  margin-left: 90px;
}

.services-hero {
  margin-top: 1050px;
  display: flex;
  position: relative;
  padding-top: 70px;
  padding-bottom: 20px;
  z-index: 9;
}

.services-bottom-flower {
  position: absolute;
  left: -160px;
  top: -150px;
  z-index: -1;
  height: 700px;
}

.services-card-bottom-flower {
  position: absolute;
  left: -160px;
  top: -412;
  height: 700px;
  width: 500px;
}

.services-hero-content {
  max-width: 100%;
}

.services-container {
  width: 100%;
}

.hero-title {
  width: 1455px !important;
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 69px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  width: 160%;
}

.hero-title span {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 69px;
  letter-spacing: -0.5px;
}

.hero-description {
  width: 1265px;
  color: #333;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 182%;
  /* 54.6px */
}

/* Services Carousel Section */
.services-showcase {
  padding: 30px 0;
  background-color: #f8f8ff;
  position: relative;
}

.showcase-container {
  max-width: 100% !important;
  width: auto !important;
  margin: 0 60px !important;
  padding: 0 15px;
}

.services-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.services-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  min-width: 100%;
}

.service-showcase-card {
  background: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 0 0 calc(25% - 22.5px);
  min-height: 320px;
}

.service-showcase-image {
  position: relative;
  width: 100%;
  height: 365px;
  border-radius: 35px;

  overflow: hidden;
}

.service-showcase-image img {
  height: 100%;
  width: 100%;
  border-radius: 35px;
  object-fit: contain;
}

.service-showcase-content {
  padding: 25px 20px;
  text-align: center;
  background: none;
}

.service-showcase-content h3 {
  color: #333;
  text-align: center !important;
  font-size: 26px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 48px;
  /* 184.615% */
  letter-spacing: -0.26px;

  margin: 0;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 39%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: #f8f8ff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.carousel-nav:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.carousel-nav.prev {
  left: -0px;
}

.carousel-nav.next {
  right: -0px;
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Doctors Section */
.doctors-section {
  direction: ltr !important;
  padding: 70px 0;
}

.doctors-section-right-flower {
  position: absolute;
  right: -300px;
  top: -250px;
  overflow: hidden;
}

.doctors-container {
  max-width: 100% !important;
  width: auto !important;
}

.doctors-section h2 {
  color: #333;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.56px;
}

.doctors-section p.desc {
  width: 90%;
  font-size: 28px;
  font-weight: 500;
  line-height: 60px;
}

.doctors-section h2 span {
  color: #e4bb51;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 121.429% */
  letter-spacing: -0.56px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.doctor-card {
  width: 480px;
  min-height: 520px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.05),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.doctor-image {
  width: 450px;
  min-height: 150px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  background: #fff2db;
  padding: 20px;
  margin: 15px;
  align-items: end;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.doctor-image img {
  width: 255px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 50px;
}

.doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--beige-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.7;
}

.doctor-info {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.doctor-info h3 {
  color: #333;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px !important;
}

.doctor-title {
  color: #e4bb51;
  text-align: center !important;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px !important;
}

.doctor-credentials {
  width: 405px;
  color: #333;
  text-align: center !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 60px;
  line-height: normal;
  text-transform: capitalize;
}

.doctor-btn {
  position: absolute !important;
  bottom: 20px !important;
  width: 347px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #e4bb51;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.08),
    -2px -2px 10px 0px rgba(0, 0, 0, 0.08);
  align-items: center;
  display: flex;
  justify-content: center;
}

.doctor-info a {
  color: #fff;
  text-align: right;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  align-items: center;
}

.doctor-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Laser Hair Removal Hero Section */
.laser-hero {
  width: 100%;
  height: 1300px;
  flex-shrink: 0;
  position: absolute;
  z-index: 100px;
  top: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/laser-ar-bg.png') no-repeat 50% / cover;
  background-color: #f8f8ff;

  overflow: hidden;
}

.laser-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-right: 5%;
}

.laser-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-right: 100px;
}

.laser-hero h1 span {
  color: white;
}

/* Laser Description Section */
.laser-description {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  padding: 70px 0;
}

.laser-container {
}

.description-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.description-text {
  flex: 1;
}

.description-text h2 {
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

.description-text h2 span {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.description-text p {
  width: 707px;
  text-align: justify;
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 208%;
  /* 66.56px */
}

.description-image {
  flex: 1;
}

.description-image img {
  z-index: 99;
  position: relative;
  width: 741px;
  height: 866px;
  flex-shrink: 0;
  border-radius: 30px;
  background: url(<path-to-image>) lightgray 0px -62.158px / 100% 106.951% no-repeat;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
}

/* Advanced Technologies Section */
.laser-technologies {
  padding-bottom: 70px;
  /* background-color: #f8f8ff; */
}

.laser-technologies-container {
  max-width: 100% !important;
  width: auto !important;
}

.laser-technologies h2 {
  color: #333;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 113.333% */
  letter-spacing: -0.6px;
}

.laser-technologies h2 span {
  color: #e4bb51;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.6px;
}

.technology-item {
  margin-top: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
}

.technology-item:last-child {
  margin-bottom: 0;
  margin-top: 0;
}

.technology-item.reverse {
  flex-direction: row-reverse;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}

.tech-image {
  width: 50%;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/laser-gradient.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.tech-image .elite {
  width: 390px;
  height: 677px;
  flex-shrink: 0;
  border-radius: 30px;
}
.tech-image .splendor {
  width: 560px;
  height: 677px;
  flex-shrink: 0;
  border-radius: 30px;
}

.gurantee-img {
  position: absolute;
  bottom: 50px;
  left: 155px;
}

.tech-content {
  padding: 60px;
  width: 50%;
  flex-shrink: 0;
  border-radius: 30px 70px 70px 30px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
}

.tech-content span {
  color: #e4bb51;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

.tech-content h3 {
  margin-bottom: 20px;
  margin-top: 22px;

  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
}

.tech-content p {
  width: 100% !important;
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 208%;
  /* 66.56px */
}

.tech-reverse-content {
  padding: 80px;
  width: 50%;
  z-index: 100;
  flex-shrink: 0;
  border-radius: 30px 70px 70px 30px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
}

.tech-reverse-content span {
  color: #e4bb51;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

.tech-reverse-content h3 {
  margin-bottom: 20px;
  margin-top: 22px;

  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
}

.tech-reverse-content p {
  width: 100%;
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 208%;
  /* 66.56px */
}

/* Booking Form Section */
.booking-form-section {
  padding: 0 0 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form-container {
  max-width: 100% !important;
  width: 1388px;
  height: 1083px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #fffae6;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 9;
}

.booking-header {
  text-align: center !important;
  margin-bottom: 50px;
}

.booking-header h2 {
  color: #e4bb51;
  font-size: 40px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  margin-top: 40px;
  text-align: center !important;
}
.book-message {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #e4bb51;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.booking-header h3 {
  color: #333;
  font-size: 66px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  letter-spacing: -1.98px;
  margin-left: 65px;
}

.booking-header h3 span {
  color: #e4bb51;
  font-size: 66px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  letter-spacing: -1.98px;
}

.booking-form {
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--secondary-color);
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input::placeholder {
  color: #999;
}

.laser-booking-btn {
  width: 591px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 26px;
  background: #e4bb51;
  display: block;
  margin: 0 auto;
  margin-top: 30px;

  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-width: none;
  border-color: transparent;
}

.booking-btn {
  display: block;
  width: 300px;
  margin: 40px auto 0;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Hair Loss Hero Section */

.hair-loss-hero {
  position: absolute;
  z-index: 100px;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/hair-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
  z-index: 9;
}

.hair-loss-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hair-loss-hero-content {
  flex: 1;
  max-width: 600px;
}

.hair-loss-hero h1 {
  width: 984px;
  color: #fff;
  font-size: 90px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100px;
  /* 111.111% */
  letter-spacing: -0.9px;
}

.hair-loss-hero h1 span {
  color: white;
}

/* Hair Loss Description Section */
.hair-loss-description {
  margin-top: 1050px;
  padding: 70px 0;
  background-color: #f8f8ff;
}

.hair-loss-container {
  max-width: 100% !important;
  width: auto !important;
}

.hair-description-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.hair-description-text h2 {
  width: 712px;
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.hair-description-text h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hair-description-text h2 span,
.hair-description-text h3 span {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
}

.hair-description-text p {
  width: 707px;
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 208%;
  text-align: justify;
  /* 66.56px */
}

.hair-description-image img {
  position: relative;
  z-index: 9;
  width: 741px;
  height: 866px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  border-radius: 30px;
}

/* Hair Loss Services Section */
.hair-loss-services {
  padding-bottom: 70px;
}

.hair-loss-services-container {
  max-width: 100% !important;
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hair-loss-services h2 {
  color: #333;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 113.333% */
  margin-bottom: 62px;
}

.hair-loss-services h2 span {
  color: #e4bb51;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
}

.hair-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.hair-service-card {
  position: relative;
  z-index: 9;
  width: 508px;
  height: 695px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
}

.hair-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hair-service-image {
  width: 473px;
  height: 377px;
  flex-shrink: 0;
  border-radius: 35px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
  margin: 15px;
  position: relative;
  overflow: hidden;
  background: var(--beige-bg);
}

.hair-service-image img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hair-service-card:hover .hair-service-image img {
  transform: scale(1.05);
}

.hair-service-placeholder {
  width: 100%;
  height: 100%;
}

.hair-service-content {
  padding: 20px 20px;
}

.hair-service-content h3 {
  color: #333;
  font-size: 34px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
}

.hair-service-content p {
  width: 464px;
  color: #333;
  font-size: 26px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0px;
}

/* Bottom Row Services (3 items) */
.hair-services-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Offers Hero Section */
.offers-hero {
  position: absolute;
  z-index: 100px;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/offers-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
}

.offers-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  /* padding-right: 5%; */
}

.offers-hero h1 {
  padding-right: 5%;
  font-size: 90px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary-color);
}

/* Offers Grid Section */
.offers-section {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 0;
}

.offer-section-container {
  max-width: 100% !important;
  width: auto !important;
  margin: 0 80px !important;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #333;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 113.333% */
  margin-bottom: 20px;
}

.section-header .highlight {
  color: #e4bb51;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
}
.feedback-form-header p .highlight {
  font-family: 'GE SS Two Bold', sans-serif !important;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.offer-card {
  position: relative;
  z-index: 9;
  width: 489px;
  height: 695px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #fff;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.02),
    -2px -2px 10px 0px rgba(0, 0, 0, 0.02);
}

.offer-image {
  width: 456px;
  height: 377px;
  flex-shrink: 0;
  border-radius: 35px;
  margin: 15px;
  position: relative;
  overflow: hidden;
  background: var(--beige-bg);
}

.offer-image img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  text-align: center;
}

.offer-title {
  color: #333;
  text-align: center !important;
  font-size: 36px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
}

.offer-price {
  color: #333;
  text-align: center !important;
  font-size: 44px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
}
.offers-btn-ar {
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-amount {
  color: #333;
  text-align: center !important;
  font-size: 36px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
}

.price-currency {
  color: #e4bb51;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.offer-btn {
  padding: 12px 30px;
  border-radius: 23px;
  background: #e4bb51;
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  width: 319px;
  height: 86px;
  flex-shrink: 0;
  border-width: 0px !important;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Bottom Row (3 cards) */
.offers-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Offer Form Section */
.offer-form-section {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  background-color: #f8f8ff;
}

.offer-form-container {
  max-width: 100% !important;
  width: auto !important;
}

.form-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.form-content {
  background: #f8f8ff;
  width: 50%;
}

.offers-form-header {
  margin-bottom: 40px;
}

.offers-form-header h2 {
  width: 588px;
  color: #333;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 136% */
  letter-spacing: -0.5px;
}

.offers-form-header h2 span {
  color: #e4bb51;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.5px;
}

.offers-form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 15px;
}

.offers-form-row h2 {
  width: 25%;
  color: #333;
  font-size: 30px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  margin-bottom: 0;
}

.offers-form-group {
  margin-bottom: 25px;
  width: 100%;
}

.offers-form-group input {
  width: 100%;
  height: 80px;
  flex-shrink: 0;
  border-radius: 49px;
  background: #fff;
  border: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 26px;
  text-align: right;
}

.offers-form-group input::placeholder {
  color: rgba(0, 0, 0, 0.55);
  font-size: 26px;
  font-style: normal;
  font-weight: 300 !important;
  /* line-height: normal; */
}

.offers-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.offers-form-control {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e8e3d3;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.form-header h2 span {
  color: var(--primary-color);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.form-row h2 {
  margin-right: 0px;
  margin-bottom: 0px;
  font-weight: 200;
}

.form-group {
  margin-bottom: 25px;
}
.btn {
  padding: 18px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  justify-content: center;
}

.btn-primary {
  background: #e4bb51;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #4b5563;
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
  text-align: right;
  width: 522px;
  height: 98px;
  flex-shrink: 0;
  border: 0;
  border-radius: 49px;
  background: #fff;
  color: #333;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e8e3d3;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
  color: #999;
  font-size: 0.95rem;
}

.payment-methods {
  margin-bottom: 30px;
}

.payment-methods h4 {
  color: #333;
  font-size: 30px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.payment-options {
  padding: 30px;
  display: grid;
  gap: 20px;
  margin-bottom: 25px;
  width: 100%;
  min-height: 400px;
  flex-shrink: 0;
  border-radius: 49px;
  background: #fff;
}
.payment-options .pay-flex {
  display: flex;
  justify-content: space-between;
}
.payment-options .pay-flex:nth-child(1) .payment-option {
  width: 100%;
}

.payment-options .pay-flex:nth-child(4) .payment-option {
  width: 32%;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  padding: 12px 16px;
  color: #333;
  text-align: right;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 48%;
  height: 77px;
  flex-shrink: 0;
  border-radius: 23px;
  background: rgba(235, 235, 235, 0.3);
}

.payment-option input[type='radio'] {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid #e4bb51;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: inset 0 0 0 4px transparent, 0 0 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.payment-option input[type='checkbox'],
.offers-form-checkbox-group input[type='checkbox'] {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #e4bb51;
  background: #fff;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.03),
    -2px -2px 6px 0px rgba(0, 0, 0, 0.03);
  border: 2px solid #e4bb51;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: box-shadow 0.3s;
}

.payment-option input[type='radio']:checked {
  box-shadow: inset 0 0 0 4px #e4bb51, 0 0 6px rgba(0, 0, 0, 0.1);
}

.payment-option label {
  margin-bottom: 0;
  cursor: pointer;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offers-form-checkbox-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}

.offers-form-checkbox-group label {
  color: #333;
  font-size: 30px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.card-option {
  width: 50px;
  height: 32px;
  border: 2px solid #e8e3d3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-option:hover,
.card-option.selected {
  border-color: var(--primary-color);
  background-color: #fff9e6;
}

.card-option img {
  max-width: 100%;
  max-height: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.checkbox-group input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  margin-top: 2px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.offers-submit-btn {
  display: block;
  margin: 0 auto;
  margin-top: 80px;
  width: 532px;
  height: 86px;
  flex-shrink: 0;
  border-radius: 23px;
  background: #e4bb51;
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  border-width: 0px !important;
}

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #c4a037 100%);
  color: var(--light-text);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.offer-air-description-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.offer-air-description-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.offer-air-description-image img {
  width: 700px;
  height: 1070px;
  border-radius: 30px;
}

/* Offers Hero Section */
.doctors-hero {
  position: absolute;
  z-index: 100px;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/doctors-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
}

.doctors-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-right: 5%;
}

.doctors-hero h1 {
  margin-left: 95px;
  color: #333;
  font-size: 90px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100px;
  /* 111.111% */
  letter-spacing: -0.9px;
}

/* Doctors Section */
.our-doctors-section {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 70px;
}

.our-doctors-container {
  max-width: 100% !important;
  width: auto !important;
  margin: 0 80px !important;
  padding: 0 15px;
}

.our-doctors-section h2 {
  margin-top: 20px !important;
  color: #333;
  font-size: 56px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  letter-spacing: -0.56px;
}

.our-doctors-section p.desc {
  width: 1461px;

  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 208%;
  /* 66.56px */
}

.our-doctors-section h2 span {
  color: #e4bb51;
  font-size: 56px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 121.429% */
  letter-spacing: -0.56px;
}

/* Feedback Hero Section */
.feedback-hero {
  position: absolute;
  z-index: 100px;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/Frame30.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
}

.feedback-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feedback-hero h1 {
  font-size: 90px;
  padding-right: 5%;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.feedback-hero h1 span {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.feedback-detailed-section {
  margin-top: 1050px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 0;
}

.feedback-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-form-header h2 {
  width: 100%;
  color: #333;
  font-style: normal;
  font-size: 60px;
  font-weight: 600 !important;
  line-height: 78px;
  margin-bottom: 50px;
}

.feedback-form-header h2 .highlight {
  color: #e4bb51;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 78px;
}

.feedback-form-header p {
  color: #333;
  font-style: normal;
  font-family: 'GE SS Two Bold', sans-serif !important;
  font-size: 60px;
  font-weight: 600 !important;
  line-height: 68px;
  letter-spacing: -0.44px;
}
.feedback-form-header p .highlight {
  width: 100%;
  color: #e4bb51;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px; /* 154.545% */
  letter-spacing: -0.44px;
}

.customer-feedback-form {
  display: grid;
  gap: 30px;
}

.feedback-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feedback-form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.feedback-form-group label {
  width: 30%;
  color: #333;
  font-size: 35px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.feedback-form-group input,
.feedback-form-group select {
  padding: 20px 30px;
  height: 80px;
  width: 70%;
  flex-shrink: 0;
  border-radius: 49px;
  background: #fff;
  border-width: 0px !important;
  color: rgba(0, 0, 0, 0.55);
  font-size: 24px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: right;
}

.feedback-form-group input:focus,
.feedback-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.feedback-form-group input::placeholder {
  color: #999;
}

.feedback-rating-section h3 {
  color: #e4bb51;
  font-size: 50px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px; /* 136% */
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.feedback-rating-questions {
  display: grid;
  gap: 25px;
}

.feedback-rating-question {
  width: 100%;
  flex-shrink: 0;
  border-radius: 49px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  padding: 30px 40px;
  min-height: 246px;
}

.feedback-question-text {
  margin-bottom: 34px;
  position: relative;
  width: 100%;
  color: #333;
  font-size: 34px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.feedback-radio-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feedback-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback-radio-option input[type='radio'] {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid #e4bb51;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: #f8f8ff;
}
.feedback-radio-option input[type='radio']:checked {
  box-shadow: inset 0 0 0 4px #e4bb51, 0 0 6px rgba(0, 0, 0, 0.1);
}
.feedback-radio-option label {
  color: #333;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

input[type='checkbox']:checked {
  background-color: #e4bb51;
  border-color: #e4bb51;
  box-shadow: inset 0 0 0 4px #fff, 0 0 6px rgba(0, 0, 0, 0.2);
}

input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feedback-rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feedback-comments-section {
  width: 100%;
  flex-shrink: 0;
  border-radius: 49px;
  background: #fff;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  padding: 30px 40px;
  margin-bottom: 32px;
  position: relative;
  z-index: 8;
}

.feedback-comments-section label {
  width: 100%;
  color: #333;
  font-size: 35px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.feedback-comments-section textarea {
  margin-top: 34px;
  width: 100%;
  height: 90px;
  flex-shrink: 0;
  border-radius: 23px;
  border-width: 0px !important;
  background: rgba(235, 235, 235, 0.3);
  padding: 20px;
}

.feedback-comments-section textarea::placeholder {
  margin-top: 30px;
  margin-left: 30px;

  color: rgba(0, 0, 0, 0.55);
  font-size: 24px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.feedback-submit-btn {
  width: 40%;
  height: 86px;
  flex-shrink: 0;
  border-radius: 23px;
  border-width: 0px !important;
  background: #e4bb51;
  color: #fff;
  font-size: 34px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
}

.feedback-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.feedback-submit-btn:active {
  transform: translateY(0);
}

.articles-hero {
  position: absolute;
  z-index: 100px;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/news-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
  background-color: #f8f8ff;
}

.articles-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-right: 5%;
}

.articles-hero h1 {
  padding-right: 5%;
  width: 984px;
  color: #333;
  font-size: 90px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100px;
  /* 111.111% */
  letter-spacing: -0.9px;
}

/* Latest Articles Section */
.latest-articles {
  display: flex;
  margin-top: 1030px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 70px 0;
  background-color: #f8f8ff;
}

.latest-articles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20 Q50 0 80 20 Q100 50 80 80 Q50 100 20 80 Q0 50 20 20" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>')
    no-repeat;
  opacity: 0.1;
}

.latest-articles::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.1"/><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.1"/></svg>')
    no-repeat;
  opacity: 0.1;
}

.articles-container {
}

.section-title {
  margin-bottom: 80px;
  color: #333;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 113.333% */
}

.section-title span {
  color: #e4bb51;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.article-card {
  display: flex;
  gap: 40px;
}

.article-image {
  transition: all 0.3s ease;
}

.article-image:hover {
  transform: translateY(-4px);
}

.article-image img {
  width: 350px;
  height: 350px;
  flex-shrink: 0;
  border-radius: 35px;
  background: lightgray -56.148px -192.678px / 114.251% 187.853% no-repeat;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.04),
    -3px -3px 8px 0px rgba(0, 0, 0, 0.04);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-image:hover img {
  transform: scale(1.05);
}

.article-content {
  padding: 15px 0;
}

.article-content h3 {
  width: 100%;
  color: #333;
  font-size: 34px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.article-content p {
  width: 100%;
  color: rgba(0, 0, 0, 0.55);
  font-size: 26px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
}

/* Devices Hero Section */
.devices-hero {
  position: absolute;
  z-index: 99 !important;
  top: 0;
  width: 100%;
  height: 1300px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  background: url('/images/laser-ar-bg.png') no-repeat 50% / cover;
  overflow: hidden;
}

.devices-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.devices-hero h1 {
  padding-right: 5%;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-align: left;
}

.devices-hero h1 span {
  color: var(--primary-color);
}

.devices-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--secondary-color);
  max-width: 600px;
  margin-bottom: 25px;
}

/* Devices Grid Section */
.devices-showcase {
  margin-top: 1030px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 0;
}

.devices-showcase h2 {
  color: #333;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
  /* 113.333% */
}

.devices-showcase h2 span {
  color: #e4bb51;
  font-size: 60px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 68px;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding: 0 16px;
}

.device-card {
  padding: 18px;
  border-radius: 40px;
  border-top: 8px solid #e4bb51;
  background: #fff;
  box-shadow: 2px 8px 10px rgba(0, 0, 0, 0.04),
    -2px -2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .device-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
} */

.device-image {
  width: 100%;
  /* aspect-ratio: 473 / 440; */
  height: 340px;
  border-radius: 35px;
  background: radial-gradient(circle, #fff 21.15%, #fff5cf 100%);
  display: flex;
  justify-content: center;
  padding: 10px;
  align-items: center;
  margin: 0 auto;
}

.device-image img {
  max-width: 190px;
  height: 100%;
  border-radius: 30px;
}

.device-card:hover .device-image img {
  transform: scale(1.05);
}

.device-info {
  background-color: transparent;
  padding: 30px 25px 0 25px;
  text-align: center;
}
.device-image.attiva img {
  height: auto !important;
}

.device-info h3 {
  color: #333;
  font-size: 38px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  text-transform: capitalize;
}

.device-info p {
  width: 100%;
  color: #333;
  font-size: 26px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
  text-transform: capitalize;
}

/* Device Categories */
.device-categories {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.device-categories h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  text-align: center;
  font-weight: 600;
}

.device-categories h2 span {
  color: var(--primary-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.category-section {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.category-section h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.category-section h3 span {
  color: var(--primary-color);
}

.category-devices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-device-card {
  background-color: var(--light-bg);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mini-device-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.mini-device-card h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.mini-device-card p {
  font-size: 0.85rem;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Contact CTA Section */
.devices-cta {
  background: var(--gold-gradient);
  color: var(--light-text);
  padding: 60px 0;
  text-align: center;
  background-image: url('/images/floral_bkg_51_b_beige 1.png');
  background-size: cover;
  background-position: center;
}

.devices-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.devices-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Flowers */
.left-up-flower {
  position: absolute;
  left: 0;
  top: -150px;
  height: 500px;
}
.left-up-straight-flower {
  position: absolute;
  left: 0;
  top: 55px;
  height: 500px;
}
.right-down-flower {
  position: absolute;
  right: 0;
  bottom: -135px;
  height: 500px;
}
.left-bottom-straight-flower {
  position: absolute;
  left: 0;
  height: 500px;
}
.right-up-straight-flower {
  position: absolute;
  right: 0;
  bottom: -100px;
  height: 500px;
}

.right-to-left-bottom-flower {
  position: absolute;
  right: 0;
  top: 50px;
  height: 500px;
}

.left-to-right-bottom-flower {
  position: absolute;
  left: 0;
  bottom: -130px;
  height: 500px;
}

.right-to-left-bottom-flower-bottom {
  position: absolute;
  right: 0;
  bottom: -140px;
  height: 500px;
}

.right-to-left-bottom-flower-top {
  position: absolute;
  left: 55px;
  top: -230px;
  height: 500px;
}
.left-bottom-straight-flower-services {
  position: absolute;
  left: 0;
  height: 500px;
  bottom: -140px;
}
.right-up-straight-flower-top {
  position: absolute;
  right: 10px;
  top: -100px;
  height: 500px;
}

.left-bottm-rotate {
  position: absolute;
  height: 500px;
  bottom: -150px;
  left: 10px;
}
.right-to-left-bottom-flower-services {
  position: absolute;
  height: 500px;
  right: 0;
  bottom: 0;
}

.left-up-straight-flower-bottom {
  position: absolute;
  height: 500px;
  bottom: -20px;
  left: 0;
}

.left-bottom-straight-flower-bottom {
  position: absolute;
  height: 500px;
  bottom: -300px;
  left: 0;
}

.right-bottom-straight-flower-bottom {
  position: absolute;
  height: 500px;
  bottom: -200px;
  right: 0;
}

.left-up-straight-flower {
  position: absolute;
  top: -200px;
  left: 0;
  height: 400px;
}

.left-side-flower {
  position: absolute;
  height: 500px;
  left: 0;
  top: -200px;
}

.left-up-straight-flower-offer {
  position: absolute;
  height: 500px;
  left: 0;
  bottom: -70px;
}

.left-side-flower-offer {
  position: absolute;
  height: 500px;
  left: 0;
  top: -100px;
}
.left-side-flower-offer-mid {
  position: absolute;
  height: 500px;
  left: 0;
  top: 650px;
}
.left-side-flower-rating-mid {
  position: absolute;
  height: 500px;
  left: 0;
  top: 850px;
}

@media (max-width: 975px) {
  .main-nav {
    display: none !important;
  }
}

/* Base Navigation */
.mobilemain-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container .contianer {
  width: 100%;
  height: 100px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Mobile Navigation Wrapper */
.mobile-nav-wrapper {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile Search Button */
.mobile-search {
  background: none;
  border: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-search:hover {
  background: #f8f9fa;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* .mobile-menu-toggle:hover {
  background: #f8f9fa;
} */

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding-top: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}
.hero.tm {
  background-image: url('/images/tmar.png');
}
/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
  display: block;
  padding: 18px 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
}

.mobile-nav-links a:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 30px;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}
.feedback-container {
  width: 100%;
}
.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 200px;
}

.mobile-dropdown-menu li {
  border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  padding: 15px 35px;
  font-size: 14px;
  color: #666;
}

.mobile-dropdown-menu a:hover {
  background: #e9ecef;
  color: var(--primary-color);
  padding-left: 40px;
}

/* Mobile CTA Button */
.mobile-cta {
  padding: 20px 25px;
  border-bottom: none;
}

.mobile-cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white !important;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--primary-color);
}

.mobile-cta-button:hover {
  background: black !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--primary-color);
  padding-left: 25px;
}

.mobile-cta-button i {
  margin-right: 8px;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

.terms-card {
  background: transparent;
  border-radius: 12px;
  padding: 30px;
}

/* Header Styles */
.terms-header {
  text-align: center;
  margin-bottom: 10px;
}

.terms-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.terms-divider {
  width: 80px;
  height: 3px;
  background: #3b82f6;
  margin: 0 auto 15px;
}

.terms-update-date {
  color: #666;
  font-size: 20px;
}

/* Content Styles */
.terms-content {
  font-size: 24px;
  line-height: 1.8;
  color: #444;
}

.terms-notice {
  background: #f1eee6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-right: 4px solid #e4bb51;
}

.terms-notice p {
  color: #e0c675;
  font-weight: 500;
  margin: 0;
}

/* Section Styles */
.terms-section {
  padding: 5px 0;
}

.terms-section.no-border {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.terms-section p {
  margin: 0 0 5px 0;
}

/* List Styles */
.terms-list {
  padding-right: 20px;
  margin: 15px 0;
}

.terms-list li {
  margin-bottom: 8px;
}

/* Link Styles */
.terms-content a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}

.terms-content a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Footer Styles */
.terms-footer {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

.terms-footer p {
  color: #555;
  margin: 0;
}
.our-devices-container {
  width: 100%;
}

@media (max-width: 767px) {
  .terms-card {
    padding: 20px;
  }

  .terms-header h1 {
    font-size: 32px;
  }

  .terms-section h2 {
    font-size: 22px;
  }

  .terms-content {
    font-size: 18px;
  }

  .container {
    padding: 0 20px;
  }
  .social-icons.mob {
    display: flex;
  }

  .social-icons.dek {
    display: none;
  }

  .book-now-footer .booknow {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .book-now-footer .booknow a button,
  .book-now-footer .booknow button,
  .book-now-footer .booknow a {
    width: 100%;
  }

  .hero,
  .aboutUS-hero,
  .servicess-hero,
  .laser-hero,
  .hair-loss-hero,
  .doctors-hero,
  .articles-hero,
  .devices-hero,
  .feedback-hero,
  .offers-hero {
    height: 700px;
  }

  .hero-content h1,
  .aboutUS-hero h1,
  .articles-hero h1,
  .hero-highlight,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-content h1,
  .offers-hero-content h1 .articles-hero h1,
  .devices-hero h1,
  .feedback-hero h1,
  .feedback-hero h1 span,
  .offers-hero h1 {
    width: 100% !important;
    line-height: 50px !important;
    font-size: 40px !important;
  }
  .right-to-left-bottom-flower-top {
    height: 200px;
  }

  .offers-hero .container {
    margin: 0;
  }

  .services-hero {
    padding-top: 0px;
  }

  .servicess-hero-content {
    width: 100%;
  }
  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-content h1,
  .offers-hero-content h1 {
    width: 100%;
    margin-left: 0;
    padding-right: 5%;
  }
  .feedback-form-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .experts,
  .about-hero,
  .services-hero,
  .laser-description,
  .hair-loss-description,
  .our-doctors-section,
  .offers-section .latest-articles,
  .devices-showcase,
  .feedback-detailed-section,
  .offer-form-section,
  .offers-section {
    margin-top: 650px;
    flex-direction: column-reverse;
    padding: 30px 0;
  }

  .laser-description,
  .hair-loss-description,
  .offers-section {
    padding: 30px 0;
  }

  .hair-loss-services {
    padding-bottom: 30px;
  }

  .description-content,
  .hair-description-content {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .description-image,
  .hair-description-image {
    width: 100%;
  }
  .description-image img,
  .hair-description-image img {
    width: 100%;
    height: 300px;
  }
  .our-doctors-section {
    padding-bottom: 30px;
  }

  .about-hero,
  .about-content {
    width: 100%;
    padding: 30px 0;
    flex-direction: column;
  }
  .about-content {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .content-image,
  .about-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-content img {
    width: 350px;
    height: 400px;
  }
  .about-hero img {
    width: 400px;
    height: 400px;
  }

  .about-hero-content {
    margin: 15px 0;
    width: 100%;
  }

  .left-up-flower {
    height: 200px;
    top: -190px;
  }
  .right-down-flower {
    height: 200px;
  }

  .experts h2,
  .about-hero-content h1,
  .about-hero-content h1 span,
  .content-text h2,
  .content-text h2 span,
  .services-hero-content h1,
  .services-hero-content h1 span,
  .doctors-container h2,
  .doctors-container h2 span,
  .description-text h2,
  .description-text h2 span,
  .laser-technologies-container h2,
  .laser-technologies-container h2 span,
  .tech-content h3,
  .tech-reverse-content h3,
  .booking-header h3,
  .booking-header h3 span,
  .hair-description-text h2,
  .hair-description-text h2 span,
  .hair-loss-services-container h2,
  .hair-loss-services-container h2 span,
  .hair-service-content h3,
  .doctors-hero-container h2,
  .doctors-hero-container h2 span,
  .section-header h2,
  .section-header h2 .highlight,
  .offer-content h3 .section-title,
  .section-title span,
  .article-content h3,
  .our-devices-container h2,
  .our-devices-container h2 span,
  .device-info h3,
  .feedback-form-header h2,
  .feedback-form-header h2 span,
  .feedback-form-header p,
  .feedback-form-header p span,
  .feedback-rating-section h3,
  .offers-form-header h2,
  .offers-form-header h2 span {
    width: 100% !important;
    font-size: 30px;
    line-height: 40px;
  }
  .experts .expert-text-container {
    height: auto;
    padding: 20px;
    z-index: 9;
  }
  .doctors-hero-container p {
    width: 100% !important;
  }
  .description-text h2 {
    margin-bottom: 10px;
  }
  .doctors-hero-container {
    width: 100%;
  }

  .section-header {
    margin-bottom: 15px;
  }

  .experts-description,
  .about-hero-content p,
  .value-card p,
  .content-text p,
  .services-hero-content p,
  .description-text p,
  .tech-content p,
  .tech-reverse-content p,
  .hair-description-text p,
  .hair-service-content p,
  .doctors-hero-container p,
  .article-content p,
  .device-info p,
  .feedback-radio-option label,
  .feedback-question-text,
  .feedback-comments-section label,
  .feedback-form-group label,
  .feedback-submit-btn,
  .offers-form-row h2,
  .offers-form-group input::placeholder,
  .payment-methods h4,
  .offers-form-checkbox-group label,
  .offers-submit-btn {
    width: 100%;
    font-size: 20px !important;
    line-height: 40px;
  }
  .payment-option label {
    font-size: 20px;
    line-height: 40px;
  }
  p {
    margin-bottom: 10px;
  }

  .hair-loss-services-container h2 {
    margin-bottom: 20px;
  }
  .technology-item,
  .technology-item.reverse {
    gap: 20px;
    margin-top: 20px;
    flex-direction: column;
  }

  .tech-image {
    height: 300px;
    width: 100%;
  }

  .tech-image .elite,
  .tech-image .splendor {
    width: 250px;
    height: 300px;
  }

  .gurantee-img {
    height: 70px;
    width: 70px;
    left: 190px;
    bottom: 10px;
  }
  .tech-content h3,
  .tech-reverse-content h3 {
    margin-bottom: 15px;
  }

  .tech-content,
  .tech-reverse-content {
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 15px;
  }

  .offers-submit-btn {
    width: 100%;
  }
  .values-section {
    padding-bottom: 30px;
  }
  .values-container .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hair-services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  .hair-service-card {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  .payment-options .pay-flex {
    flex-direction: column;
    gap: 10px;
  }
  .payment-options .pay-flex:nth-child(4) .payment-option {
    width: 100%;
  }
  .payment-options .pay-flex .payment-option {
    width: 100%;
  }

  .hair-service-image img {
    height: 100%;
    width: 100%;
  }

  .hair-service-image {
    width: 100%;
    height: 300px;
    margin: 0;
  }

  .devices-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 20px;
  }
  .value-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .value-icon {
    height: 80px;
    width: 80px;
  }

  .feedback-form-group .value-card svg {
    height: 60px;
    width: 60px;
  }

  .offers-grid {
    gap: 15px;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
  }

  .offer-card {
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .offer-image {
    width: 100%;
    height: 300px;
    margin: 0;
  }

  .offer-image img {
    height: 100%;
    width: 100%;
  }

  .offer-section-container {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
  }
  .offer-content {
    padding: 15px 0;
  }

  .offer-price span {
    font-size: 30px;
  }

  .offer-btn {
    height: auto;
    margin-top: 10px;
    padding: 8px 25px;
    font-size: 20px;
    width: fit-content;
  }

  .offer-title {
    margin-bottom: 0;
  }

  .right-to-left-bottom-flower,
  .left-to-right-bottom-flower,
  .right-to-left-bottom-flower-bottom,
  .right-up-straight-flower-top,
  .left-bottm-rotate,
  .right-to-left-bottom-flower-services,
  .right-bottom-straight-flower-bottom,
  .left-up-straight-flower-bottom,
  .left-side-flower-offer,
  .left-side-flower,
  .left-up-straight-flower-offer,
  .left-side-flower-offer-mid,
  .left-side-flower-rating-mid {
    height: 200px;
  }
  .feedback-form-group {
    flex-direction: column;
  }
  .feedback-form-group label,
  .feedback-form-group input,
  .offers-form-group input,
  .feedback-form-group select,
  .feedback-submit-btn,
  .offers-submit-btn {
    width: 100%;
    height: 65px;
  }
  .about-content-container .right-to-left-bottom-flower-bottom {
    bottom: 35px;
  }

  .laser-technologies {
    padding-bottom: 30px;
  }
  .booking-form-container {
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }
  .booking-header {
    margin-bottom: 20px;
  }
  .booking-header h2 {
    margin-top: 20px;
    font-size: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-group {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select {
    height: 65px;
    width: 100%;
  }
  .laser-booking-btn {
    width: 100%;
    height: 65px;
    margin-top: 15px;
    font-size: 24px;
  }
  .feedback-rating-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .cta-button {
    height: auto;
    padding: 8px 12px;
    width: fit-content;
    font-size: 20px !important;
  }
  .experts-image {
    margin: 15px 0;
  }
  .experts-image img {
    height: 300px;
  }
  .md-visit {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 30px 0;
  }
  .left-up-straight-flower {
    height: 200px;
  }
  .rate-ur-visit,
  .love-to-hear {
    font-size: 20px;
    margin-bottom: 0 !important;
  }
  .md-visit h2,
  .md-visit span {
    font-size: 30px;
    width: 100%;
    line-height: 40px;
    margin-bottom: 0;
  }
  .appointment {
    height: auto;
    padding: 20px;
    width: 100%;
  }
  .appointment .content {
    width: 100%;
  }
  .appointment .container {
    flex-direction: column;
    justify-content: center;
    padding: 0 !important;
  }
  .appointment .content h2,
  .appointment .content h3 {
    width: 100%;
    font-size: 30px !important;
    line-height: 35px;
    text-align: center;
  }
  .appointment-cta-button {
    margin-top: 10px;
    height: auto;
    padding: 8px 12px;
    width: fit-content;
    font-size: 24px !important;
  }
  .services {
    padding: 30px 0;
  }

  .services h2,
  .services h2 span {
    font-size: 30px;
    line-height: 40px;
    width: 100%;
  }

  .advanced-skincare {
    width: 100%;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: justify;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-card img {
    width: 100%;
    height: 350px;
  }

  .doctors-section {
    padding: 30px 0;
  }
  .doctors-grid {
    margin-top: 20px;
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .doctor-card {
    min-height: 400px !important;
    width: 100%;
    padding: 10px;
  }
  .doctor-image {
    width: 100%;
    height: 250px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 0;
  }
  .doctor-image img {
    width: 230px;
    height: 200px;
  }

  .doctor-info h3 {
    font-size: 26px;
  }
  .doctor-title {
    font-size: 24px;
  }

  .doctor-credentials {
    width: 100%;
    margin-bottom: 70px;
  }

  .cta-button {
    position: relative;
    bottom: 0;
  }
  .service-card h3,
  .service-card h3 span {
    width: 100%;
    font-size: 30px;
    padding: 0 15px;
    bottom: 15px;
  }
  .payment-bg-section {
    padding: 30px 0;
  }
  /* .payment-image {
    width: 100%;
  } */

  .payment-image img {
    width: 100%;
    height: 250px;
  }
  .form-container {
    flex-direction: column-reverse;
  }
  .offer-air-description-image img {
    height: 400px;
    width: 100%;
    object-fit: fill;
  }
  .form-content {
    width: 100%;
  }
  .offer-air-description-image {
    width: 100%;
  }
  .payment-info h2,
  .payment-info h2 span,
  .payment-info h3,
  .payment-info h3 span {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .latest-articles {
    padding: 30px 0;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .payment-partners {
    justify-content: center;
  }
  .payment-partners img {
    height: 60px;
    width: 150px;
  }
  .offers-form-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .offers-form-row h2 {
    width: 100%;
  }
  .offers-form-group {
    width: 100%;
  }
  .offers-form-row {
    gap: 15px;
  }
  .testimonials {
    padding: 30px 0;
  }
  .testimonials h2,
  .testimonials h2 span {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .video-thumbnail {
    width: 100%;
    height: 300px;
    padding: 20px;
  }
  .video-section {
    width: 100%;
  }

  .play-button {
    width: 40px;
    height: 40px;
  }

  .testimonial-card {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  .quote-icon {
    margin: 20px 0;
    font-size: 30px;
  }
  .testimonial-card h3 {
    font-size: 30px;
  }

  .testimonial-card p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .rating {
    margin-bottom: 0;
  }
  .payment-plans {
    flex-direction: column;
  }
  .payment-info {
    width: 100%;
    padding-left: 0;
  }

  .left-bottom-straight-flower-bottom,
  .left-bottom-straight-flower-services {
    height: 200px;
  }
  .right-up-straight-flower {
    height: 200px;
  }

  .showcase-container {
    margin: 0 !important;
  }
  .service-showcase-content {
    padding: 6px;
  }
  .service-showcase-image {
    height: 300px;
    width: 100%;
  }
  .showcase-container {
    padding: 0;
  }
  .carousel-nav {
    height: 40px !important;
    width: 40px !important;
    top: 36%;
  }
  .service-showcase-card {
    height: 350px;
  }
  .carousel-indicators {
    margin-top: 20px;
  }

  .articles-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback-submit-btn {
    width: 100%;
  }
  .article-card {
    gap: 15px;
    flex-direction: column;
  }
  .article-image img {
    width: 100%;
    height: 300px;
  }
  header {
    max-width: 100%;
    height: 100px;
  }
  .device-image {
    height: 300px !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-social-container {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-right {
    display: none;
  }
  header .top-bar .container {
    display: none;
  }
  .contact-actions .phone-numbers,
  .spring-offer {
    display: none;
  }
  .contact-actions {
    display: none;
  }

  .social-icons {
    gap: 5px;
  }
  .social-icon {
    height: 32px;
    width: 32px;
  }
  .logo img {
    height: 75px !important;
    width: 75px !important;
  }
  .mobile-nav-wrapper {
    display: flex;
  }

  .laser-hero h1 {
    margin-right: 0px;
  }
  .mobile-menu-overlay {
    position: relative;
  }
  .mobile-menu-toggle.active {
    position: absolute;
    top: 10px;
    background: var(--primary-color);
    border-radius: 100px;
  }
  .feedback-form-group {
    gap: 0;
  }
  .customer-feedback-form {
    gap: 15px;
  }
  .mobile-menu-toggle.active .hamburger-line {
    background: white;
  }
  .nav-container {
    height: 100%;
  }
  .nav-container .container {
    padding: 0 10px;
    height: 100%;
  }

  .footer-content {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .contact-details {
    width: 100%;
  }

  .quick-links {
    text-align: start;
    justify-content: start;
    height: auto;
    margin-bottom: 10px !important;
  }
  .footer h2 {
    font-size: 24px;
    align-items: start;
  }
  .contact-text p {
    font-size: 20px;
    line-height: 40px;
  }
  .footer-links a {
    font-size: 20px;
    line-height: 40px;
  }
  .dropdown.mb {
    display: block !important;
  }
  .footer-links ul {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .footer-links ul li {
    margin-left: 0 !important;
  }
  .footer-logo img {
    height: 150px;
    width: 150px;
  }
  .contact-details > p,
  .contact-details > address {
    font-size: 20px;
  }

  .feedback-form-header h2 {
    margin-bottom: 20px;
  }

  .footer-social .social-icon {
    height: 40px;
    width: 40px;
  }

  .footer-social {
    gap: 10px;
  }
  .footer-logo {
    margin-left: 0;
  }
  .footer p {
    margin-bottom: 0 !important;
  }
  .copyright {
    font-size: 18px;
  }
  .appointment .button-container {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .form-content {
    width: 100%;
  }
  .social-icons.mob {
    display: none;
  }
  .doctors-hero-container p {
    width: 100% !important;
  }

  .hero,
  .aboutUS-hero,
  .servicess-hero,
  .laser-hero,
  .hair-loss-hero,
  .doctors-hero,
  .articles-hero,
  .devices-hero,
  .feedback-hero,
  .offers-hero {
    height: 830px;
  }
  .hero-content h1,
  .hero-highlight,
  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-content h1,
  .offers-hero-content h1,
  .articles-hero h1,
  .devices-hero h1,
  .our-devices-container h2,
  .our-devices-container h2 span,
  .feedback-hero h1,
  .feedback-hero h1 span,
  .offers-hero h1 {
    width: 100% !important;
    line-height: 50px !important;
    font-size: 42px !important;
  }

  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-content h1,
  .offers-hero-content h1 {
    padding-right: 5%;
    margin-left: 0 !important;
  }

  .offers-hero .container {
    margin: 0;
  }

  .experts,
  .about-hero,
  .services-hero,
  .laser-description,
  .hair-loss-description,
  .our-doctors-section,
  .offers-section,
  .form-container {
    flex-direction: column-reverse;
  }
  .offer-air-description-image {
    width: 100%;
  }
  .offers-form-row {
    flex-direction: column;
  }
  .offers-form-group {
    width: 100%;
  }

  .offers-form-group input {
    width: 100%;
  }
  .offer-air-description-image img {
    width: 100%;
    height: 450px;
  }

  .experts,
  .about-hero,
  .services-hero,
  .laser-description,
  .hair-loss-description,
  .our-doctors-section,
  .offers-section,
  .latest-articles,
  .devices-showcase,
  .feedback-detailed-section,
  .offer-form-section {
    margin-top: 700px;
    flex-direction: column-reverse;
    padding: 40px 0;
  }
  .services-hero,
  .laser-hero,
  .hair-loss-description {
    padding: 30px 0;
  }
  .laser-description,
  .offers-section {
    padding: 30px 0;
  }
  .description-content {
    flex-direction: column-reverse;
    gap: 25px;
    align-items: start;
  }

  .hair-description-content {
    flex-direction: column-reverse;
    gap: 25px;
    align-items: flex-start;
  }

  .about-hero {
    padding: 40px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .description-image,
  .hair-description-image {
    width: 700px;
  }

  .description-image img,
  .hair-description-image img,
  .about-hero-image img,
  .content-image img {
    width: 600px;
    height: 500px;
    margin-bottom: 15px !important;
  }
  .about-hero-image,
  .content-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-hero-content {
    width: 100%;
    margin-right: 0;
  }

  .left-up-flower {
    height: 250px;
    top: -190px;
  }
  .right-down-flower {
    height: 250px;
  }

  .description-text h2 {
    margin-bottom: 15px;
  }

  .technology-item,
  .technology-item.reverse {
    gap: 20px;
    margin-top: 30px;
    flex-direction: column;
  }

  .tech-image {
    height: 350px;
    width: 100%;
  }

  .tech-image .elite,
  .tech-image .splendor {
    width: 300px;
    height: 350px;
  }

  .gurantee-img {
    height: 80px;
    width: 80px;
    left: 240px;
    bottom: 10px;
  }
  .tech-content h3,
  .tech-reverse-content h3 {
    margin-bottom: 15px;
  }

  .tech-content,
  .tech-reverse-content {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .doctors-hero-container {
    width: 100%;
  }

  .section-header {
    margin-bottom: 25px;
  }
  .feedback-submit-btn {
    width: 60%;
  }

  .experts h2,
  .about-hero-content h1,
  .about-hero-content h1 span,
  .content-text h2,
  .content-text h2 span,
  .services-hero-content h1,
  .services-hero-content h1 span,
  .doctors-container h2,
  .doctors-container h2 span,
  .description-text h2,
  .description-text h2 span,
  .laser-technologies-container h2,
  .laser-technologies-container h2 span,
  .tech-content h3,
  .tech-reverse-content h3,
  .booking-header h3,
  .booking-header h3 span,
  .hair-description-text h2,
  .hair-description-text h2 span,
  .hair-loss-services-container h2,
  .hair-loss-services-container h2 span,
  .doctors-hero-container h2,
  .doctors-hero-container h2 span,
  .section-header h2,
  .section-header .highlight,
  .offer-title,
  .offer-price span,
  .section-title,
  .section-title span,
  .article-content h3,
  .device-info h3,
  .feedback-form-header h2,
  .feedback-form-header h2 span,
  .feedback-form-header p,
  .feedback-form-header p span,
  .feedback-rating-section h3,
  .offers-form-header h2,
  .offers-form-header h2 span {
    width: 100% !important;
    font-size: 33px;
    line-height: 40px;
  }
  .experts .expert-text-container {
    height: auto;
    padding: 20px;
    z-index: 9;
  }
  .latest-articles {
    padding: 40px 0;
  }
  .article-image img {
    height: 300px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .articles-grid,
  .article-card {
    gap: 30px;
  }

  .device-image {
    height: 300px !important;
    padding: 10px;
  }
  .feedback-form-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .experts-description,
  .about-hero-content p,
  .value-card p,
  .content-text p,
  .services-hero-content p,
  .description-text p,
  .tech-content p,
  .tech-reverse-content p,
  .hair-description-text p,
  .doctors-hero-container p,
  .article-content p .content-text p,
  .article-content p,
  .device-info p,
  .feedback-radio-option label,
  .feedback-question-text,
  .feedback-comments-section label,
  .feedback-form-group label,
  .feedback-submit-btn,
  .offers-form-row h2,
  .offers-form-group input::placeholder,
  .payment-methods h4,
  .offers-form-checkbox-group label,
  .offers-submit-btn {
    width: 100%;
    font-size: 22px !important;
    line-height: 40px;
  }
  .payment-option label {
    font-size: 22px;
    line-height: 40px;
  }
  .values-section {
    padding-bottom: 40px;
  }

  p {
    margin-bottom: 10px;
  }
  .feedback-form-header h2 {
    margin-bottom: 25px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hair-loss-services-container h2 {
    margin-bottom: 25px;
  }

  .offer-section-container {
    padding: 0 !important;
    margin: 0 !important;
  }

  .offer-content {
    padding: 15px 0;
  }
  .offers-grid {
    margin-bottom: 30px;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-price {
    font-size: 33px;
  }
  .offer-btn {
    margin-top: 20px;
    padding: 10px 25px;
    width: fit-content;
    height: auto;
    font-size: 26px;
  }

  .offer-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .offer-image {
    width: 100%;
    height: 320px;
    margin: 0;
  }

  .offer-image img {
    height: 100%;
    width: 100%;
  }

  .hair-services-grid {
    gap: 20px;
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hair-service-card {
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }

  .hair-service-image {
    height: 300px;
    width: 100%;
    margin: 0;
  }
  .hair-service-image img {
    height: 100%;
    width: 100%;
  }
  .hair-service-content h3 {
    font-size: 28px;
    width: 100%;
    line-height: 40px;
  }
  .hair-service-content p {
    font-size: 20px;
    width: 100%;
    line-height: 40px;
  }
  .hair-loss-services {
    padding-bottom: 40px;
  }

  .value-card {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .value-icon {
    height: 90px;
    width: 90px;
  }

  .value-icon svg {
    height: 70px;
    width: 70px;
  }
  .feedback-form-group input,
  .offers-form-group input,
  .feedback-form-group select,
  .feedback-submit-btn,
  .offers-submit-btn,
  .payment-option {
    height: 70px;
  }
  .right-to-left-bottom-flower,
  .left-to-right-bottom-flower,
  .right-to-left-bottom-flower-top,
  .left-bottom-straight-flower-services,
  .left-bottm-rotate,
  .right-to-left-bottom-flower-services,
  .right-bottom-straight-flower-bottom,
  .left-up-straight-flower-bottom,
  .left-side-flower-offer,
  .left-side-flower,
  .left-up-straight-flower-offer,
  .left-side-flower-offer-mid,
  .left-side-flower-rating-mid {
    height: 300px;
  }

  .doctors-grid {
    margin-top: 20px;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form-container {
    height: auto;
    width: 100%;
    padding: 15px 25px;
  }
  .booking-header h2 {
    margin-top: 25px;
  }
  .form-group {
    width: 100% !important;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    height: 70px;
  }
  .laser-booking-btn {
    width: 100%;
    height: 70px;
    margin-top: 25px;
    font-size: 26px;
  }

  .doctor-card {
    height: auto;
    width: 100%;
    padding: 15px;
  }
  .doctor-image {
    height: 300px;
    width: 100%;
    margin: 0 !important;
    padding-bottom: 0;
  }
  .doctor-image img {
    height: 100%;
    width: 100%;
  }
  .doctor-info h3 {
    font-size: 26px;
  }
  .doctor-title {
    font-size: 24px;
  }
  .doctor-credentials {
    width: 100%;
  }
  .doctor-info a {
    position: relative;
    bottom: 0;
  }
  .doctor-info {
    padding: 10px 0;
  }
  .carousel-nav {
    top: 35%;
    height: 45px !important;
    width: 45px !important;
  }
  .service-showcase-image {
    height: 270px;
    width: 100%;
  }
  .service-showcase-card {
    height: 350px;
  }

  .showcase-container {
    margin: 0 !important;
  }
  .service-showcase-content {
    padding: 10px;
  }
  .doctors-section {
    padding: 30px 0;
  }

  .offers-form-row {
    gap: 25px;
  }
  .appointment .button-container {
    margin-left: 0;
    margin-top: 20px;
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .right-to-left-bottom-flower-bottom,
  .right-up-straight-flower-top {
    height: 300px;
  }
  .about-content-container .right-to-left-bottom-flower-bottom {
    bottom: 35px;
  }
  .about-content {
    padding: 40px 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .cta-button {
    height: auto;
    padding: 8px 12px;
    width: fit-content;
    font-size: 20px !important;
  }
  .experts-image {
    margin: 15px 0;
  }
  .experts-image img {
    height: 300px;
  }
  .md-visit {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    margin: 30px 0;
  }
  .left-up-straight-flower {
    height: 250px;
  }
  .rate-ur-visit,
  .love-to-hear {
    font-size: 20px;
    margin-bottom: 0 !important;
  }
  .md-visit h2,
  .md-visit span {
    font-size: 30px;
    width: 100%;
    line-height: 40px;
    margin-bottom: 0;
  }
  .appointment {
    height: auto;
    padding: 20px;
    width: 100%;
  }
  .appointment .content {
    width: 100%;
  }
  .appointment .container {
    flex-direction: column;
    justify-content: center;
    padding: 0 !important;
  }
  .appointment .content h2,
  .appointment .content h3 {
    width: 100%;
    font-size: 33px !important;
    line-height: 35px;
  }
  .appointment-cta-button {
    margin-top: 20px;
    height: auto;
    padding: 8px 20px;
    width: fit-content;
    font-size: 20px !important;
  }
  .services {
    padding: 40px 0;
  }

  .services h2,
  .services h2 span {
    font-size: 33px;
    line-height: 40px;
    width: 100%;
  }

  .advanced-skincare {
    width: 100%;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: justify;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card img {
    width: 100%;
    height: 350px;
  }

  .service-card h3,
  .service-card h3 span {
    width: 100%;
    font-size: 33px;
    padding: 0;
    bottom: 15px;
  }
  .payment-bg-section {
    padding: 40px 0;
  }
  /* .payment-image {
    width: 100%;
  } */

  .payment-image img {
    width: 100%;
    height: 250px;
  }

  .payment-info h2,
  .payment-info h2 span,
  .payment-info h3,
  .payment-info h3 span {
    font-size: 33px;
    line-height: 40px;
    text-align: center;
  }

  .payment-partners {
    justify-content: center;
  }
  .payment-partners img {
    height: 60px;
    width: 150px;
  }
  .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .testimonials {
    padding: 50px 0;
  }
  .testimonials h2,
  .testimonials h2 span {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .video-thumbnail {
    width: 100%;
    height: 300px;
    padding: 20px;
  }
  .video-section {
    width: 100%;
  }

  .play-button {
    width: 40px;
    height: 40px;
  }

  .testimonial-card {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  .quote-icon {
    margin: 20px 0;
    font-size: 33px;
  }
  .testimonial-card h3 {
    font-size: 30px;
  }

  .testimonial-card p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .rating {
    margin-bottom: 0;
  }
  .payment-plans {
    flex-direction: column;
  }
  .payment-info {
    width: 100%;
    padding-left: 0;
  }

  .left-bottom-straight-flower-bottom {
    height: 250px;
  }
  .right-up-straight-flower {
    height: 250px;
  }

  header {
    max-width: 100%;
    height: 200px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-right {
    display: none;
  }
  header .top-bar .container {
    flex-direction: row;
    height: 60px;
  }
  .contact-actions .phone-numbers,
  .spring-offer {
    display: none;
  }
  .contact-actions {
    justify-content: flex-end;
  }
  .social-icons {
    gap: 5px;
  }
  .social-icon {
    height: 32px;
    width: 32px;
  }
  .logo img {
    height: 75px !important;
    width: 75px !important;
  }
  .mobile-nav-wrapper {
    display: flex;
  }
  .mobile-menu-overlay {
    position: relative;
  }
  .mobile-menu-toggle.active {
    position: absolute;
    top: 10px;
    background: var(--primary-color);
    border-radius: 100px;
  }
  .mobile-menu-toggle.active .hamburger-line {
    background: white;
  }

  .footer-content {
    gap: 10px;
  }
  .contact-details {
    width: 100%;
  }

  .quick-links {
    text-align: start;
    justify-content: start;
    height: auto;
    margin-bottom: 10px !important;
  }
  .footer h2 {
    font-size: 30px;
    align-items: start;
  }
  .contact-text p {
    font-size: 24px;
    line-height: 50px;
  }
  .footer-links a {
    font-size: 22px;
    line-height: 35px;
  }
  .footer-links ul {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .footer-links ul li {
    margin-left: 0 !important;
  }
  .footer-logo img {
    height: 200px;
    width: 200px;
  }
  .contact-details > p,
  .contact-details > address {
    font-size: 22px;
  }

  .footer-social .social-icon {
    height: 40px;
    width: 40px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-logo {
    margin-left: 0;
  }
  .footer p {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  header {
    max-width: 100%;
  }
  .social-icons.mob {
    display: none;
  }
  .doctors-hero-container p {
    width: 100% !important;
  }

  .clinic-info {
    display: none;
  }
  .form-content {
    width: 100%;
  }
  .social-icons {
    gap: 5px;
  }
  .social-icon {
    height: 32px;
    width: 32px;
  }
  .contact-actions svg {
    height: 32px;
    width: 32px;
  }
  .search-btn {
    height: 32px;
    width: 32px;
  }
  .cta-button-switch {
    height: 35px;
    width: fit-content;
    padding: 0 10px;
    font-size: 14px;
  }
  .search-btn img {
    height: 25px;
    width: 25px;
  }
  .logo img {
    height: 75px !important;
    width: 75px !important;
  }
  a.cta-button {
    height: 40px;
    width: fit-content;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    white-space: nowrap;
  }
  .cta-button-switch {
    height: 35px;
    width: fit-content;
    padding: 0 10px;
    font-size: 14px;
  }
  .article-image img {
    height: 300px;
  }
  .nav-links {
    gap: 11px;
  }

  .nav-links a {
    font-size: 12px;
  }
  .footer-content {
    gap: 10px;
  }
  .contact-details {
    width: 100%;
  }

  .quick-links {
    text-align: start;
    justify-content: start;
    height: auto;
    margin-bottom: 10px !important;
  }
  .footer h2 {
    font-size: 30px;
    align-items: start;
  }
  .contact-text p {
    font-size: 24px;
    line-height: 50px;
  }
  .footer-links a {
    font-size: 22px;
    line-height: 35px;
  }
  .footer-links ul {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .footer-links ul li {
    margin-left: 0 !important;
  }
  .footer-logo img {
    height: 220px;
    width: 220px;
  }
  .contact-details > p,
  .contact-details > address {
    font-size: 22px;
  }
  .footer-social .social-icon {
    height: 50px;
    width: 50px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-logo {
    margin-left: 0;
  }
  .footer p {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1025px) and (max-width: 1350px) {
  .container {
    padding: 0 30px;
  }
  .social-icons.mob {
    display: none;
  }
  .doctors-hero-container p {
    width: 100% !important;
  }

  .hero,
  .aboutUS-hero,
  .servicess-hero,
  .laser-hero,
  .hair-loss-hero,
  .doctors-hero,
  .articles-hero,
  .devices-hero,
  .feedback-hero,
  .offers-hero {
    height: 1000px;
  }
  .hero-content h1,
  .hero-highlight,
  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-container h1,
  .offers-hero-content h1,
  .articles-hero h1,
  .devices-hero h1,
  .our-devices-container h2,
  .our-devices-container h2 span,
  .feedback-hero h1,
  .feedback-hero h1 span,
  .feedback-hero p,
  .feedback-hero p span,
  .offers-hero h1 {
    line-height: 50px !important;
    font-size: 45px !important;
  }

  .hair-loss-hero .container {
    margin: 0;
  }

  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-container h1,
  .offers-hero-content h1 {
    margin-left: 0;
    padding-right: 5%;
  }
  .laser-description,
  .hair-loss-description {
    padding: 40px 0;
    gap: 25px;
  }

  .offers-hero .container {
    margin: 0;
  }
  .experts,
  .about-hero,
  .services-hero,
  .laser-description,
  .hair-loss-description,
  .our-doctors-section,
  .offers-section,
  .latest-articles,
  .devices-showcase,
  .feedback-detailed-section,
  .offer-form-section {
    margin-top: 770px;
    /* flex-direction: column-reverse; */
  }
  .about-hero {
    padding: 40px 0;
    align-items: flex-start;
  }

  .our-doctors-section {
    padding-bottom: 40px;
  }

  .about-hero-content,
  .offers-form-row {
    flex-direction: column;
  }
  .offers-form-group,
  .offers-form-group input,
  .payment-options {
    width: 100%;
  }
  .description-text h2 {
    margin-bottom: 15px;
  }
  .hair-description-content {
    gap: 25px;
    align-items: start;
  }

  .offer-air-description-image {
    width: 50%;
  }
  .offer-air-description-image img {
    width: 100%;
    height: 600px;
  }
  .about-hero-content {
    width: 100%;
  }
  .offers-form-row {
    gap: 20px;
    margin-bottom: 0;
  }
  .about-hero-image,
  .content-image,
  .description-image,
  .hair-description-image {
    width: 500px;
    height: 500px;
    flex: 1;
  }
  .offer-form-container {
    width: 100% !important;
  }

  .about-hero-image img,
  .content-image img,
  .description-image img,
  .hair-description-image img {
    width: 100%;
    height: 100%;
  }
  .about-hero-content,
  .about-content .content-text,
  .description-text,
  .hair-description-text {
    width: 100%;
    flex: 1.2;
    margin-left: 25px;
  }

  .left-up-flower {
    height: 300px;
    top: -190px;
  }
  .right-down-flower {
    height: 300px;
  }
  .right-to-left-bottom-flower,
  .left-side-flower-offer {
    height: 300px;
  }

  .about-content-container .right-to-left-bottom-flower-bottom {
    height: 300px;
    bottom: 35px;
  }

  .left-to-right-bottom-flower,
  .right-to-left-bottom-flower-top,
  .left-bottom-straight-flower-services,
  .right-up-straight-flower-top,
  .left-bottm-rotate,
  .right-to-left-bottom-flower-services,
  .right-bottom-straight-flower-bottom,
  .left-up-straight-flower-bottom,
  .left-side-flower,
  .left-up-straight-flower-offer,
  .left-side-flower-offer-mid,
  .left-side-flower-rating-mid {
    height: 300px;
  }
  .experts h2,
  .about-hero-content h1,
  .about-hero-content h1 span,
  .content-text h2,
  .content-text h2 span,
  .services-hero-content h1,
  .services-hero-content h1 span,
  .doctors-container h2,
  .doctors-container h2 span,
  .description-text h2,
  .description-content h2 span,
  .laser-technologies-container h2,
  .laser-technologies-container h2 span,
  .tech-content h3,
  .tech-reverse-content h3,
  .booking-header h3,
  .booking-header h3 span,
  .hair-description-text h2,
  .hair-description-text h2 span,
  .hair-loss-services-container h2,
  .hair-loss-services-container h2 span,
  .doctors-hero-container h2,
  .doctors-hero-container h2 span,
  .section-header h2,
  .section-header .highlight,
  .offer-content h3,
  .offer-price,
  .section-title,
  .section-title span,
  .article-content h3,
  .device-info h3,
  .feedback-form-header h2,
  .feedback-form-header h2 span,
  .feedback-form-header p,
  .feedback-form-header p span,
  .feedback-rating-section h3,
  .offers-form-header h2,
  .offers-form-header h2 span {
    font-size: 36px;
    line-height: 40px;
    width: 100% !important;
  }

  .offer-price span {
    font-size: 33px;
  }

  .offer-btn {
    min-height: 70px;
    font-size: 30px;
    margin-top: 20px;
  }

  .offers-section {
    padding: 40px 0;
  }

  .doctors-hero-container {
    width: 100%;
  }
  .experts .expert-text-container {
    width: 600px;
    height: 600px;
    padding: 30px;
    z-index: 9;
  }
  .experts-description,
  .about-hero-content p,
  .value-card p,
  .content-text p,
  .services-hero-content p,
  .description-text p,
  .tech-content p,
  .tech-reverse-content p,
  .hair-description-text p,
  .doctors-hero-container p,
  .article-content p,
  .device-info p,
  .feedback-radio-option label,
  .feedback-question-text,
  .feedback-comments-section label,
  .feedback-form-group label,
  .feedback-submit-btn,
  .offers-form-row h2,
  .offers-form-group input::placeholder,
  .payment-methods h4,
  .offers-form-checkbox-group label,
  .offers-submit-btn {
    width: 100%;
    font-size: 22px !important;
    line-height: 40px;
  }

  .services-showcase {
    margin-top: 20px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .offers-section {
    margin-bottom: 40px;
  }
  .description-content {
    gap: 20px;
    align-items: start;
  }
  .showcase-container {
    margin: 0 !important;
    padding: 0;
  }
  .offers-grid {
    margin-bottom: 40px;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-card {
    width: 450px;
    height: 660px;
  }
  .offer-image {
    width: 420px;
  }
  .services-showcase-grid {
    gap: 15px;
  }
  .service-showcase-content {
    padding: 10px;
  }
  .service-showcase-image {
    height: 300px;
  }
  .service-showcase-card {
    height: 360px;
  }

  .hair-loss-services-container h2 {
    margin-bottom: 25px;
  }

  .hair-services-grid {
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .hair-service-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .hair-service-content h3 {
    font-size: 30px;
    width: 100%;
  }
  .hair-service-content p {
    font-size: 22px;
    width: 100%;
  }

  .hair-loss-services {
    padding-bottom: 40px;
  }

  .hair-service-image {
    width: 100%;
    height: 300px;
    margin: 0;
  }
  .hair-service-image img {
    width: 100%;
    height: 100%;
  }
  .tech-image {
    width: 400px;
    height: 500px;
  }

  .tech-image .elite,
  .tech-image .splendor {
    width: 400px;
    height: 400px;
  }

  .tech-content,
  .tech-reverse-content {
    height: auto;
    width: 550px;
  }
  .gurantee-img {
    height: 90px;
    width: 90px;
    left: 40px;
  }

  .carousel-nav {
    height: 50px !important;
    width: 50px !important;
  }

  .doctors-section {
    padding: 40px 0;
  }

  .experts .cta-button {
    height: 60px;
    width: 200px;
    font-size: 24px;
  }
  .experts-image img {
    height: 600px;
  }
  .booking-form-container {
    max-width: 13383px;
    height: auto;
    padding: 25px 15px;
  }
  .booking-header h2 {
    margin-top: 25px;
    font-size: 33px;
  }
  .form-group {
    width: 100% !important;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    height: 75px;
  }

  .laser-booking-btn {
    height: 75px;
    width: 100%;
    font-size: 26px;
  }

  .services-hero {
    padding: 40px 0;
    padding-top: 20px;
  }

  .technology-item,
  .technology-item.reverse {
    margin-top: 25px;
    gap: 25px;
  }

  .values-section {
    padding-bottom: 40px;
  }
  .values-grid {
    gap: 20px;
  }
  .doctors-grid {
    margin-top: 20px;
    gap: 20px;
  }
  .doctor-card {
    height: auto;
    width: 100%;
    padding: 15px;
  }
  .doctor-image {
    width: 100%;
    margin: 0;
    height: 300px;
    padding: 0 10px;
    padding-top: 10px;
  }
  .doctor-image img {
    width: 100%;
    height: 85%;
  }
  .doctor-info h3 {
    font-size: 26px;
  }

  .doctor-info p {
    width: 100%;
  }
  .doctor-title {
    font-size: 24px;
  }
  a.doctor-btn {
    position: relative;
    bottom: 0;
  }

  .value-icon {
    height: 90px;
    width: 90px;
  }

  .value-card svg {
    height: 70px;
    width: 70px;
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .feedback-form-header h2 {
    margin-bottom: 30px;
  }

  .value-card {
    width: 100%;
    height: auto;
  }
  .feedback-form-group {
    flex-direction: column;
  }
  .feedback-form-group label {
    width: 100%;
  }
  .feedback-form-group input,
  .offers-form-group input,
  .feedback-form-group select,
  .offers-submit-btn {
    width: 100%;
    height: 75px;
  }
  .offers-form-checkbox-group {
    gap: 0;
  }
  .feedback-form-group select {
    width: 100%;
  }
  .about-content {
    padding: 40px 0;
    align-items: start;
    gap: 20px;
  }
  .md-visit {
    width: 100%;
    height: 300px;
    padding: 30px 20px;
    margin: 30px 0;
  }
  .left-up-straight-flower {
    height: 300px;
  }
  .md-visit h2,
  .md-visit span {
    font-size: 36px;
    width: 100%;
    line-height: 40px;
    margin-bottom: 0;
  }
  .appointment {
    height: auto;
    padding: 30px 0;
    width: 100%;
  }
  .appointment .content {
    width: 100%;
  }
  .appointment .container {
    padding: 0 !important;
  }
  .appointment .content h2,
  .appointment .content h3 {
    width: 100%;
    font-size: 40px !important;
    line-height: 36px;
  }
  .services {
    padding: 40px 0;
  }

  .services h2,
  .services h2 span {
    font-size: 36px;
    line-height: 40px;
    width: 100%;
  }

  .advanced-skincare {
    width: 100%;
    margin-bottom: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card img {
    width: 100%;
    height: 350px;
  }

  .service-card h3,
  .service-card h3 span {
    width: 100%;
    font-size: 33px;
    padding: 0;
    bottom: 15px;
  }
  .payment-bg-section {
    padding: 40px 0;
  }

  .payment-image img {
    width: 100%;
    height: 250px;
  }

  .payment-info h2,
  .payment-info h2 span,
  .payment-info h3,
  .payment-info h3 span {
    font-size: 36px;
    line-height: 40px;
  }

  .payment-partners img {
    height: 60px;
    width: 150px;
  }

  .testimonials {
    padding: 50px 0;
  }
  .testimonials h2,
  .testimonials h2 span {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }

  .testimonials-content {
    align-items: center;
    gap: 15px;
  }

  .video-thumbnail {
    width: 100%;
    height: 530px;
    padding: 20px;
  }
  .video-section {
    width: 35%;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .testimonial-card {
    width: 60%;
    padding: 20px;
    height: auto;
  }
  .quote-icon {
    margin: 20px 0;
    font-size: 36px;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .article-card {
    flex-direction: column;
    gap: 30px;
  }
  .section-title {
    margin-bottom: 60px;
  }
  .article-image img {
    height: 300px;
    width: 100%;
    object-fit: fill;
  }

  .testimonial-card h3 {
    font-size: 36px;
  }

  .payment-info {
    width: 100%;
    padding-left: 0;
  }

  .left-bottom-straight-flower-bottom {
    height: 300px;
  }
  .right-up-straight-flower {
    height: 300px;
  }

  header {
    max-width: 100%;
  }
  .nav-container .container {
    width: 100%;
  }
  .social-icons {
    gap: 5px;
  }
  .social-icon {
    height: 35px;
    width: 35px;
  }
  .header-social-container {
    gap: 8px;
  }
  .clinic-info {
    width: fit-content;
    padding: 0 5px;
    height: 35px;
  }
  .clinic-promotion span,
  .clinic-hours span {
    white-space: nowrap;
    font-size: 12px;
  }
  .spring-offer {
    font-size: 14px;
  }
  .contact-actions,
  .phone-numbers {
    gap: 8px;
  }
  .contact-actions svg {
    height: 35px;
    width: 35px;
  }
  .contact-actions span {
    font-size: 14px;
  }
  .logo img {
    height: 75px !important;
    width: 75px !important;
  }
  .nav-links {
    gap: 11px;
  }

  .nav-links a {
    font-size: 14px;
  }
  .search-btn {
    height: 35px;
    width: 35px;
  }
  .search-btn img {
    height: 25px;
    width: 25px;
  }
  a.cta-button {
    height: 40px;
    width: fit-content;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    white-space: nowrap;
    gap: 0;
  }
  .device-image {
    height: 320px !important;
    padding: 10px;
  }

  .cta-button-switch {
    height: 35px;
    width: fit-content;
    padding: 0 10px;
    font-size: 14px;
  }
  .footer-content {
    gap: 10px;
  }
  .contact-details {
    width: 100%;
  }
  .footer h2 {
    font-size: 30px;
  }
  .contact-text p {
    font-size: 24px;
    line-height: 50px;
  }
  .footer-links a {
    font-size: 22px;
    line-height: 35px;
  }
  .footer-links ul {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer-links ul li {
    margin-left: 0 !important;
  }
  .footer-logo img {
    height: 250px;
    width: 250px;
  }
  .contact-details > p,
  .contact-details > address {
    font-size: 22px;
  }
  .footer-social .social-icon {
    height: 50px;
    width: 50px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-logo {
    margin-left: 100px;
  }
}
@media (min-width: 1600px) and (max-width: 1728px) {
  .doctor-image img {
    width: 60% !important;
    height: 190px !important;
  }
}
@media (min-width: 1366px) and (max-width: 1517px) {
  .doctor-image img {
    width: 70% !important;
    height: 170px !important;
  }
}
@media (min-width: 1518px) and (max-width: 1600px) {
  .doctor-image img {
    width: 75% !important;
    height: 170px !important;
  }
}

@media (min-width: 1351px) and (max-width: 1728px) {
  .hero-content h1.hero-title.pr {
    margin-bottom: 120px !important;
  }

  .container {
    padding: 0 40px;
  }
  .social-icons.mob {
    display: none;
  }

  .hero,
  .aboutUS-hero,
  .servicess-hero,
  .laser-hero,
  .hair-loss-hero,
  .doctors-hero,
  .articles-hero,
  .devices-hero,
  .feedback-hero,
  .offers-hero {
    height: 1100px;
  }
  .hero-content h1,
  .hero-highlight,
  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-container h1,
  .offers-hero-content h1,
  .articles-hero h1,
  .devices-hero h1,
  .our-devices-container h2,
  .our-devices-container h2 span,
  .feedback-hero h1,
  .feedback-hero h1 span,
  .feedback-form-header p,
  .feedback-form-header p span,
  .offers-hero h1 {
    width: 100%;
    line-height: 50px !important;
    font-size: 45px !important;
  }

  .aboutUS-hero h1,
  .servicess-hero-content h1,
  .laser-hero-content h1,
  .hair-loss-hero-content h1,
  .doctors-hero-container h1,
  .offers-hero-content h1 {
    margin-left: 0;
    padding-right: 5%;
  }
  .hair-loss-hero .container,
  .offers-hero .container {
    margin: 0;
  }

  .experts,
  .about-hero,
  .services-hero,
  .laser-description,
  .hair-loss-description,
  .our-doctors-section,
  .offers-section,
  .latest-articles,
  .devices-showcase,
  .feedback-detailed-section,
  .offer-form-section {
    margin-top: 870px !important;
  }

  .our-doctors-section {
    margin-bottom: 50px;
  }

  .offers-section {
    padding: 50px 0;
  }

  .laser-description {
    gap: 40px;
    padding: 50px 0;
    align-items: start;
  }

  .description-content {
    gap: 30px;
  }

  .services-hero {
    padding: 50px 0;
    padding-top: 20px;
  }
  .hair-loss-description {
    padding: 50px 0;
  }

  .hair-description-content {
    gap: 30px;
  }

  .left-up-flower {
    height: 400px;
    top: -190px;
  }
  .right-down-flower,
  .right-to-left-bottom-flower-top,
  .left-bottom-straight-flower-services,
  .right-up-straight-flower-top,
  .left-bottm-rotate,
  .right-to-left-bottom-flower-services,
  .left-side-flower,
  .left-up-straight-flower-offer,
  .left-side-flower-offer-mid,
  .left-side-flower-offer,
  .left-side-flower-rating-mid {
    height: 400px;
  }
  .experts h2,
  .about-hero-content h1,
  .about-hero-content h1 span,
  .content-text h2,
  .content-text h2 span,
  .services-hero-content h1,
  .services-hero-content h1 span,
  .doctors-container h2,
  .doctors-container h2 span,
  .description-text h2,
  .description-text h2 span,
  .laser-technologies-container h2,
  .laser-technologies-container h2 span,
  .tech-content h3,
  .tech-reverse-content h3,
  .booking-header h3,
  .booking-header h3 span,
  .hair-description-text h2,
  .hair-description-text h2 span,
  .hair-loss-services-container h2,
  .hair-loss-services-container h2 span,
  .doctors-hero-container h2,
  .doctors-hero-container h2 span,
  .section-header h2,
  .section-header .highlight,
  .section-title,
  .section-title span,
  .device-info h3,
  .feedback-form-header h2,
  .feedback-form-header h2 span,
  .feedback-rating-section h3,
  .offers-form-header h2,
  .offers-form-header h2 span {
    font-size: 45px;
    line-height: 50px;
    width: 100% !important;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .doctors-hero-container p {
    width: 100% !important;
  }
  .about-hero-content p,
  .experts-description p,
  .content-text p,
  .services-hero-content p,
  .description-text p,
  .tech-content p,
  .tech-reverse-content p,
  .hair-description-text p,
  .article-content p,
  .feedback-radio-option label,
  .feedback-form-group input::placeholder,
  .feedback-form-group select::placeholder,
  .feedback-question-text,
  .feedback-comments-section label,
  .feedback-form-group label,
  .feedback-submit-btn,
  .offers-form-row h2,
  .offers-form-group input::placeholder,
  .payment-methods h4,
  .offers-form-checkbox-group label,
  .offers-submit-btn {
    font-size: 26px;
  }
  .device-info p,
  .doctors-hero-container p {
    font-size: 20px !important;
  }
  .offer-form-container {
    width: 100% !important;
  }
  .offers-form-row h2 {
    width: 100%;
  }
  .feedback-form-group input,
  .offers-form-group input,
  .feedback-form-group select,
  .feedback-submit-btn,
  .payment-option,
  .offers-submit-btn {
    height: 80px;
  }
  .offers-form-row {
    flex-direction: column;
  }
  .offers-form-group,
  .offers-form-group input,
  .payment-options {
    width: 100%;
  }

  .offer-air-description-image {
    width: 50%;
  }
  .offer-air-description-image img {
    width: 75%;
    height: 800px;
  }

  .experts .expert-text-container {
    width: 750px;
    height: 750px;
    padding: 30px;
    z-index: 9;
  }
  .about-hero {
    padding: 50px 0;
    align-items: flex-start;
  }

  .doctors-section {
    padding: 50px 0;
  }

  .doctors-grid {
    margin-top: 20px;
    gap: 25px;
  }

  .doctor-card {
    width: 100%;
    padding: 20px;
    min-height: 300px;
  }

  .doctor-image {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    display: flex;
    align-items: end;
  }
  .doctor-image img {
    width: 61%;
    height: 165px;
  }
  .doctor-credentials {
    width: 100%;
    margin-bottom: 70px;
  }

  .offers-form-row {
    gap: 25px;
    margin-bottom: 0;
  }
  .about-hero-image,
  .content-image,
  .description-image,
  .hair-description-image {
    height: 600px;
    width: 600px;
  }

  .about-hero-image img,
  .content-image img,
  .description-image img,
  .hair-description-image img {
    height: 100%;
    width: 100%;
  }

  .hair-loss-services-container h2 {
    margin-bottom: 25px;
  }

  .offer-section-container {
    margin: 0 !important;
  }

  .offers-grid {
    gap: 20px;
    margin-bottom: 30px;
  }
  .offer-card {
    width: 100%;
    padding: 20px;
    height: 640px;
  }
  .offer-content {
    margin-top: 20px;
  }
  .offer-btn {
    margin-top: 30px;
    min-height: 70px;
  }

  .offer-image {
    width: 100%;
    margin: 0 !important;
    height: 330px;
  }
  .offer-image img {
    width: 100%;
    height: 100%;
  }

  .hair-services-grid {
    gap: 25px;
    margin-bottom: 40px;
  }

  .hair-service-card {
    width: 100%;
    padding: 20px;
    height: auto;
  }

  .hair-service-image {
    width: 100%;
    margin: 0;
  }
  .hair-service-image img {
    width: 100%;
    height: 100%;
  }
  .hair-service-content p {
    font-size: 24px;
  }

  .hair-loss-services {
    padding-bottom: 50px;
  }

  .hair-service-content h3 {
    font-size: 31px;
  }

  .hair-service-content p {
    width: 100%;
  }
  .showcase-container {
    margin: 0 !important;
    padding: 0;
  }
  .technology-item,
  .technology-item.reverse {
    margin-top: 30px;
    gap: 40px;
  }

  .tech-image {
    height: 750px;
  }

  .tech-content,
  .tech-reverse-content {
    height: 600px;
    padding: 60px;
  }

  .tech-image .elite,
  .tech-image .splendor {
    height: 600px;
  }

  .gurantee-img {
    height: 100px;
    width: 100px;
    left: 85px;
    bottom: 120px;
  }

  .booking-form-container {
    height: auto;
    padding: 40px 20px;
  }

  .booking-header h2 {
    margin-top: 30px;
  }
  .service-showcase-content {
    padding: 10px;
  }

  .form-group input,
  .form-group select {
    height: 80px;
  }

  .laser-booking-btn {
    height: 80px;
  }

  .service-showcase-card {
    height: 390px;
  }

  .service-showcase-image {
    width: 100%;
    height: 320px;
  }

  .experts-image img {
    height: 750px;
  }

  .md-visit {
    width: 100%;
    margin-top: 30px;
  }

  .left-up-straight-flower {
    height: 400px;
  }

  .right-to-left-bottom-flower,
  .left-to-right-bottom-flower,
  .right-to-left-bottom-flower-bottom,
  .right-bottom-straight-flower-bottom,
  .left-up-straight-flower-bottom {
    height: 400px;
  }

  .about-content-container .right-to-left-bottom-flower-bottom {
    bottom: 35px;
  }
  .about-content {
    align-items: flex-start;
    padding: 50px 0;
  }
  .md-visit h2,
  .md-visit span {
    font-size: 45px;
    width: 100%;
  }

  .values-section {
    padding-bottom: 50px;
  }
  .value-card {
    width: 100%;
    height: auto;
  }
  .value-icon {
    width: 95px;
    height: 95px;
  }
  .value-icon svg {
    height: 75px;
    width: 75px;
  }
  .appointment .content {
    width: 100%;
  }
  .appointment .container {
    padding: 0 !important;
  }
  .appointment .content h2,
  .appointment .content h3 {
    width: 100%;
    font-size: 45px !important;
    line-height: 35px;
  }
  .services {
    padding: 50px 0;
  }

  .services h2,
  .services h2 span {
    font-size: 45px;
    width: 100%;
  }

  .advanced-skincare {
    width: 100%;
    margin-bottom: 10px;
  }

  .service-card img {
    width: 100%;
    height: 400px;
  }

  .service-card h3,
  .service-card h3 span {
    width: 100%;
    font-size: 45px;
  }
  .payment-bg-section {
    padding: 50px 0;
  }

  .payment-image img {
    width: 100%;
    height: 400px;
  }

  .payment-info h2,
  .payment-info h2 span,
  .payment-info h3,
  .payment-info h3 span {
    font-size: 45px;
  }

  .testimonials {
    padding: 50px 0;
  }
  .testimonials h2,
  .testimonials h2 span {
    font-size: 45px;
  }

  .testimonials-content {
    align-items: center;
    gap: 15px;
  }

  .video-thumbnail {
    width: 100%;
    height: 550px;
    padding: 20px;
  }
  .video-section {
    width: 35%;
  }

  .play-button {
    width: 40px;
    height: 40px;
  }

  .testimonial-card {
    width: 60%;
    height: 550px;
    padding: 20px;
  }
  .quote-icon {
    margin: 20px 0;
    font-size: 40px;
  }
  .testimonial-card h3 {
    font-size: 40px;
  }

  .payment-info {
    width: 100%;
    padding-left: 0;
  }

  .left-bottom-straight-flower-bottom {
    height: 400px;
  }
  .right-up-straight-flower {
    height: 400px;
  }

  header {
    max-width: 100%;
  }
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .device-image {
    height: 340px !important;
    padding: 10px;
  }

  .nav-container .container {
    width: 100%;
  }
  .social-icons {
    gap: 10px;
  }
  .social-icon {
    height: 40px;
    width: 40px;
  }
  .clinic-info {
    width: fit-content;
    padding: 0 5px;
  }
  .clinic-promotion span,
  .clinic-hours span {
    white-space: nowrap;
  }
  .spring-offer {
    font-size: 16px;
  }
  .contact-actions svg {
    height: 40px;
    width: 40px;
  }
  .logo img {
    height: 90px !important;
    width: 90px !important;
  }
  .nav-links a {
    font-size: 16px;
  }
  .search-btn {
    height: 40px;
    width: 40px;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn img {
    height: 30px;
    width: 30px;
  }
  a.cta-button {
    height: 55px;
    width: 195px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
  }

  .contact-text p {
    font-size: 24px;
    line-height: 50px;
  }
  .footer-links a {
    font-size: 24px;
    line-height: 40px;
  }
  .footer-logo img {
    height: 250px;
    width: 250px;
  }
  .contact-details > p,
  .contact-details > address {
    font-size: 24px;
  }
  .footer-social .social-icon {
    height: 50px;
    width: 50px;
  }
  .footer-social {
    gap: 10px;
  }
}

@media (min-width: 1728px) {
  header,
  .nav-container .container {
    min-width: 1728px;
  }
  .social-icons.mob {
    display: none;
  }

  .container {
    width: 85%;
  }
  .about-content-container .right-to-left-bottom-flower-bottom {
    bottom: 35px;
  }
}

@media (min-width: 2100px) {
  .feedback-hero,
  .devices-hero,
  .aboutUS-hero,
  .laser-hero,
  .hair-loss-hero,
  .offers-hero,
  .doctors-hero,
  .servicess-hero,
  .articles-hero,
  .hero {
    height: 1500px;
  }
  .feedback-detailed-section,
  .about-hero,
  .services-hero,
  .devices-showcase,
  .offers-section,
  .hair-loss-description,
  .laser-description,
  .our-doctors-section,
  .latest-articles,
  .experts {
    margin-top: 1250px;
  }
  .social-icons.mob {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .services-showcase-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
