@font-face {
  font-family: 'Gotham Rounded';
  src: url('Gotham Rounded/Gotham Rounded Light/Gotham Rounded Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('Gotham Rounded/Gotham Rounded Book/Gotham Rounded Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('Gotham Rounded/Gotham Rounded Medium/Gotham Rounded Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('Gotham Rounded/Gotham Rounded Bold/Gotham Rounded Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('Gotham Rounded/Gotham Rounded Bold/Gotham Rounded Bold.otf') format('opentype');
  font-weight: 800;
  /* Use Bold as a fallback for 800 */
  font-style: normal;
}

:root {
  --primary: #15B756;
  --primary-light: #EBF6EE;
  --primary-xd: #10a858;
  --headers-soft: rgba(212, 237, 218, 0.5);
  /* Light Mint Green from XD */
  --dark-green: #124C2E;
  --text-dark: #000000;
  --text-gray: #555555;
  --bg-gray: #F4F7F5;
  --bg-yellow: #FFF9F0;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 40px rgba(0, 168, 88, 0.1);
  /* Vibrant green tint */
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --radius-sm: 10px;
  --radius-md: 20px;
  /* Precise XD radius */
  --radius-lg: 40px;
}

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

body {
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.d-none {
  display: none !important;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-left {
  text-align: left;
}

.highlight-green {
  color: var(--primary);
  font-weight: 700;
}

.bg-light-green {
  background-color: var(--primary-light);
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-light-yellow {
  background-color: var(--bg-yellow);
}

.bg-white {
  background-color: var(--white);
}

.section-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 50px;
  color: var(--text-dark);
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 11px;
  /* Fully rounded buttons as per PDF */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0d8a49;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.mr-2 {
  margin-right: .5rem;
}

.slick-arrow {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev {
  left: -55px;
}

.slick-next {
  right: -55px;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary);
  font-size: 35px;
  opacity: 1;
  font-weight: 700;
}

.slick-list {
  margin: 0 -8px;
}

.slick-slide {
  margin: 0 8px;
}

.slider-wrapper {
  padding: 0 20px;
}

/* Header */
.header {
  padding: 20px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

@media screen and (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}

.header-btn {
  padding: 15px 30px;
}

@media screen and (max-width: 600px) {
  .header-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* Hero Section */
.hero {
  padding-top: 100px;
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary), transparent 50%) 0%, var(--white) 60%);
}

@media screen and (max-width: 600px) {
  .hero {
    padding-top: 50px;
  }
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

@media screen and (max-width: 600px) {
  .hero-inner {
    gap: 20px;
  }
}

.hero-content {
  flex: 1.2;
  text-align: left;
}

.hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .hero-title {
    text-align: center;
    font-size: 40px !important;
  }
}

.hero-title .highlight-green {
  color: var(--primary);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .hero-subtitle {
    margin-bottom: 20px;
    ;
  }
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-basis: 200px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 1px solid var(--text-dark);
  /* Black borders for badges on light green */
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

@media screen and (max-width:600px) {
  .badge {
    width: 100%;
  }
}

.badge i {
  color: #000;
  font-size: 1.2rem;
}

.hero-form-container {
  width: 474px;
  background: var(--white);
  padding: 80px 50px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 600px) {
  .hero-form-container {
    max-width: unset !important;
    margin: 0 !important;
    padding: 30px 15px !important;
  }
}

.form-card h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 800;
}

@media screen and (max-width: 600px) {
  .form-card h3 {
    font-size: 18px;
  }
}

.hs-form-669f0f8b-ac17-4708-8453-02ac168b13eb_acc6785d-664f-4f2391e6-57349835e2c2 .hs-button {
  display: none !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #F4F7F5;
  transition: all 0.3s;
}

.hs-form__virality-link {
  display: none;
}

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

/* Trust Bar */
.trust-bar {
  padding: 80px 0;
  background: var(--white);
}

@media screen and (max-width: 600px) {
  .trust-bar {
    padding: 30px 0;
  }
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--primary);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  /* 30px */
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 600px) {
  .trust-inner {
    gap: 10px;
  }
}

.trust-item {
  display: flex;
  flex-basis: 150px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

@media screen and (max-width: 600px) {
  .trust-item {
    flex-basis: 100px;
  }
}

.trust-item img {
  height: 50px;
  width: 50px;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .trust-item img {
    height: 30px;
    width: 30px;
    margin-bottom: 20px;
  }
}

.trust-item p {
  font-size: 14px;
  line-height: 1.2;
}

/* Pain Scale */
.pain-scale {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .pain-scale {
    padding: 50px 0;
  }
}

.pain-scale::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent linear-gradient(180deg, #0CC4BE 0%, #15B756 100%) 0% 0% no-repeat padding-box;
  opacity: 0.1;
}

.pain-scale-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 80px 15px;
  border-radius: var(--radius-md);
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); */
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .pain-scale-card {
    padding: 30px 15px;
  }
}

.gradient-bar-container {
  max-width: 877px;
  width: 100%;
  margin: 0 auto;
}

.gradient-bar {
  position: relative;
  height: 15px;
  border-radius: 10px;
  background: linear-gradient(to right, #4CAF50, #FFEB3B, #FF9800, #F44336);
  margin-bottom: 20px;
  position: relative;
}

.gradient-bar-container .btn {
  max-width: 450px;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.pain-indicator {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 19px;
  z-index: 2;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: grab;
}

.scale-numbers,
.scale-labels {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 30px;
  width: 100%;
}

.scale-numbers span,
.scale-labels span {
  font-size: 14px;
  flex: 0 0 auto;
  /* Numbers take only their natural width */
  transition: all 0.3s;
}

.scale-labels span {
  font-size: 12px;
}

.scale-numbers span.active {
  color: var(--primary);
  transform: scale(1.1);
}

.scale-numbers small {
  display: block;
  font-size: 0.75rem;
  text-transform: capitalize;
  margin-top: 30px;
}

/* Delay Section */
.delay-section {
  padding: 80px 0;
}

@media screen and (max-width: 600px) {
  .delay-section {
    padding: 50px 0;
  }
}

.delay-section .slick-slider {
  padding-top: 30px;
}

@media screen and (max-width: 600px) {
  .delay-section .slick-slider {
    padding-top: 20px;
  }
}


.delay-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.delay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, color-mix(in srgb, var(--primary) 50%, transparent) 0%, #231F20 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}

.delay-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .delay-card img {
    height: 240px;
  }
}

.card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 20px;
  font-weight: 500;
  z-index: 2;
  text-align: left;
  font-size: 20px;
}

/* Modalities */
.modalities-section {
  padding: 80px 0;
}

@media screen and (max-width: 600px) {
  .modalities-section {
    padding: 50px 0;
  }
}

.modal-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 35px 30px;
  border: 1px solid #EEE;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .modal-card {
    padding: 30px 10px;
  }
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 800;
  border-bottom: .5px solid var(--text-gray);
  padding-bottom: 10px;
}

.modal-card.type-1 {
  background: #F2FFF7 0% 0% no-repeat padding-box;
  border-color: var(--primary);
}

.modal-card.type-1 .modal-title {
  border-bottom-color: var(--primary);
}

.modal-card.type-2 {
  background: transparent linear-gradient(146deg, #0CC4BE 0%, #15B756 100%) 0% 0% no-repeat padding-box;
  border-color: #0CC4BE;
  color: #fff;
}

.modal-card.type-2 .modal-title {
  border-bottom-color: #fff;
  color: #fff;
}

.modal-card.type-3 {
  background: #EDFFFE 0% 0% no-repeat padding-box;
  border-color: #0CC4BE;
}

.modal-card.type-3 .modal-title {
  border-bottom-color: #0CC4BE;
  color: #0CC4BE;
}

.center-slider .slick-center .modal-card {
  background: var(--primary);
  color: #FFF;
  transform: scale(1.05);
  border-color: var(--primary);
}

.center-slider .slick-center .modal-card .modal-title {
  color: #FFF;
}

.modal-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.modal-list li span:first-of-type {
  font-weight: 700;
}

.center-slider .slick-center .modal-card li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cost-banner {
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  .cost-banner {
    padding-top: 50px;
  }
}

.cost-banner .cost-box {
  background: var(--text-dark);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .cost-banner .cost-box {
    flex-direction: column;
    gap: 20px;
    padding: 35px 15px;
    text-align: center;
  }
}

.cost-banner .cost-box .cost-content h3 {
  font-size: 30px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .cost-banner .cost-box .cost-content h3 {
    font-size: 24px;
  }
}

.cost-banner .cost-box .cost-content h3 .highlight-green {
  color: var(--primary);
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .cost-banner .cost-box .cost-content h3 .highlight-green {
    display: block;
    margin-bottom: 15px;
  }
}

/* Meet Urologist */
.urologist-section {
  padding-top: 80px;
  border-bottom: 10px solid #FBDF31;
}

@media screen and (max-width: 600px) {
  .urologist-section {
    padding-top: 50px;
  }
}

.urologist-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media screen and (max-width: 600px) {
  .urologist-inner {
    gap: 50px;
  }
}

.urologist-info {
  flex: 1;
}

.urologist-info .btn {
  max-width: 293px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .urologist-info .btn {
    max-width: unset;
  }
}

.doctor-name {
  font-size: 40px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .doctor-name {
    font-size: 34px;
  }
}

.doctor-badge {
  display: inline-block;
  background: var(--primary);
  color: #FFF;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .doctor-badge {
    margin: 10px 0;
    font-size: 12px;
    padding: 12px;
  }
}

.doctor-edu {
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .doctor-edu {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.doctor-desc {
  font-size: 14px;
  text-align: justify;
}

.doctor-stats {
  display: flex;
  gap: 40px;
  margin: 25px 0 50px;
}

@media screen and (max-width: 600px) {
  .doctor-stats {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 30px;
  }
}

.stat-box {
  position: relative;
  padding-left: 15px;
}

@media screen and (max-width: 600px) {
  .stat-box {
    text-align: left;
  }
}

.stat-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #0CC4BE;
  border-radius: 10px;
}

.stat-box h4 {
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
  color: #0CC4BE;
}

.stat-box p {
  font-size: 12px;
}

.urologist-image img {
  width: 100%;
}

/* Why Choose */
.why-choose {
  padding: 100px 0;
}

@media screen and (max-width: 600px) {
  .why-choose {
    padding: 50px 0;
  }
}

.why-choose-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 600px) {
  .why-choose-inner {
    gap: 30px;
  }
}

.why-image img {
  max-width: 572px;
  width: 100%;
  border-radius: var(--radius-md);
}

.why-list ul li {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark-green);
}

@media screen and (max-width: 600px) {
  .why-list ul li {
    font-size: 18px;
    gap: 10px;
    text-align: left;
    align-items: start;
  }
}


.why-list ul li img {
  width: 22px;
  height: auto;
}

/* Video Testimonials */
.video-testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FF0000;
  font-size: 45px;
  /* Slightly larger for better visibility */
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  background: #fff;
  /* This matches the YouTube icon's specific curvature */
  border-radius: 22%;
  /* Ensures the background stays tightly behind the icon */
  line-height: 0.5;
  padding: 0;
  display: inline-block;
}


/* Reviews */
.text-reviews {
  padding: 100px 0;
}

@media screen and (max-width: 600px) {
  .text-reviews {
    padding: 50px 0;
  }
}

.reviews-inner {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.review-card {
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

@media screen and (max-width: 600px) {
  .review-card {
    padding: 30px 15px;
  }
}

.active-review {
  padding: 50px 30px;
  background: transparent linear-gradient(180deg, #15B756 0%, #0B5C2B 100%) 0% 0% no-repeat padding-box;
  color: #FFF;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media screen and (max-width: 600px) {
  .active-review {
    padding: 30px 15px;
  }
}

.active-review .stars i {
  color: #fff;
}

.side-reviews {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: #FFF;
  border: 1px solid #EAEAEA;
}

.stars i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 30px;
}

.review-text {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.9;
}

.active-review .review-text {
  margin: 30px 0;
  font-size: 20px;
}

@media screen and (max-width: 600px) {

  .review-text,
  .active-review .review-text {
    font-size: 14px;
  }
}

.review-author {
  margin-top: auto;
  border-top: 1px solid var(--text-dark);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active-review .review-author {
  border-top-color: #fff;
}

.review-author h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}

.active-review .review-author h4 {
  font-size: 24px;
}

@media screen and (max-width: 600px) {
  .review-author h4 {
    font-size: 20px !important;
  }
}

.review-author span {
  font-size: 14px;
  opacity: 0.7;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .review-author span {
    font-size: 12px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

@media screen and (max-width: 600px) {
  .faq-section {
    padding: 50px 0;
  }
}

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

.faq-item {
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #000;
  /* transition: background 0.3s; */
}

@media screen and (max-width: 600px) {
  .faq-question {
    padding: 20px 15px;
    font-size: 14px;
  }
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s;
  color: #444;
}

@media screen and (max-width: 600px) {
  .faq-answer {
    font-size: 14px;
  }
}

.faq-item.active .faq-answer {
  padding: 0 25px 30px;
  max-height: 200px !important;
}

@media screen and (max-width: 600px) {

  .faq-item.active .faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
}

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

/* Footer */
.footer {
  background: var(--primary);
  color: #FFF;
  padding: 50px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

@media screen and (max-width: 600px) {
  .footer-inner {
    gap: 30px
  }
}

.footer-brand {
  flex: 1.2;
}


.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  .footer-brand p {
    margin-bottom: 15px;
    text-align: left;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #FFF;
  color: var(--primary);
}

.footer-col {
  flex: 1;
}

@media screen and (max-width: 600px) {
  .footer-col {
    text-align: left;
  }
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links li img {
  margin-top: 3px;
  width: 20px;
  height: 20px;
}

/* Gallery Section */
.gallery-section {
  padding-top: 100px;
  background-color: var(--white);
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .gallery-section {
    padding-top: 50px;
  }
}

.gallery-slider-main {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .gallery-slider-main {
    margin-bottom: 20px;
  }
}

.gallery-card-main {
  padding: 0 15px;
  opacity: 0.5;
  transition: all 0.5s ease;
  transform: scale(0.9);
}

@media screen and (max-width: 600px) {
  .gallery-card-main {
    padding: 0;
  }
}

.slick-center .gallery-card-main {
  opacity: 1;
  transform: scale(1);
}

.gallery-card-main img {
  width: 100%;
  max-width: 572px;
  height: 330px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

@media screen and (max-width: 600px) {
  .gallery-card-main img {
    height: 250px;
  }
}

/* Thumbnail Navigation - Permanent Scroll Bar on Wrapper */
.gallery-nav-scroll-wrapper {
  margin: 0 auto;
  width: 100%;
  overflow-x: scroll !important;
  padding: 10px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.gallery-nav-scroll-wrapper::-webkit-scrollbar {
  height: 10px;
  display: block;
}

.gallery-nav-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.1);
  /* Transparent blue for testing */
  border-radius: 10px;
  display: block;
}

.gallery-nav-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  display: block;
}

.gallery-slider-nav {
  display: flex !important;
  width: max-content;
}

.nav-item {
  flex: 0 0 180px;
  padding: 0 8px;
  cursor: pointer;
  opacity: .5;
  transform: translateY(0);
  transition: all .5s;
}

.nav-item.slick-current {
  opacity: 1;
  transform: translateY(-5px);
  transition: all .5s;
}

.nav-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid transparent;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .nav-item img {
    height: 80px;
  }
}

.slick-current .nav-item img {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Permanent Slide Bar (Progress Indicator) */
.gallery-progress-container {
  width: 250px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  margin: 10px auto 40px;
  position: relative;
  overflow: hidden;
}

.gallery-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 14.28%;
  /* Initial state for 7 images */
  background: var(--primary);
  border-radius: 10px;
  transition: left 0.3s ease;
}

.seo-content {
  background-color: var(--bg-gray) !important;
}

.wp-block-list {
  padding-left: 1rem;
}

ul.wp-block-list {
  list-style: disc;
}

@media (max-width: 768px) {
  .nav-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 991px) {

  .hero-inner,
  .why-choose-inner,
  .urologist-inner,
  .footer-inner,
  .reviews-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-form-container {
    width: 100%;
    max-width: 450px;
    margin: 40px auto 0;
  }

  .urologist-info {
    text-align: center;
  }

  .doctor-stats {
    justify-content: center;
  }


}

/* Pain Scale Popup Modal */
.pain-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.pain-popup-overlay.active {
  visibility: visible;
  opacity: 1;
  overflow: scroll;
}

.pain-popup-content {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pain-popup-overlay.active .pain-popup-content {
  transform: translateY(0);
}

.pain-popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10001;
}

.pain-popup-close i {
  font-weight: 700;
}

.pain-popup-close.visible {
  opacity: 1;
  pointer-events: auto;
}

.pain-popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.pain-popup-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.pain-popup-header p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.4;
}

@media screen and (max-width: 600px) {
  .pain-popup-header p {
    font-size: 14px;
  }
}

.pain-popup-form .form-group {
  margin-bottom: 15px;
}

.pain-popup-form .form-group input {
  background: #EEF6FE;
  /* Light blueish tint for inputs like in image */
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-dark);
}

.pain-popup-form .btn-primary {
  padding: 18px;
  font-size: 18px;
  background-color: var(--primary);
  border-radius: 12px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .pain-popup-content {
    margin: 20px;
    padding: 40px 25px;
  }

  .pain-popup-header h3 {
    font-size: 22px;
  }
}