@font-face {
  font-family: 'Poppins';
  src: url(./fonts/Poppins-Regular.woff2);
  font-display: swap;
}

@font-face {
  font-family: 'Bahnschrift';
  src: url(./fonts/Bahnschrift.woff2);
  font-display: swap;
}

:root {
  --primary-color: #014fd5;
  --secondary-color: #00d4d8;
  --white-color: #fff;
  --black-color: #000;
  --paragraph-color: #3f3e3e;
  --light-blue-color: #e2f0ff;
  --font-popins: 'Poppins', sans-serif;
  --font-bahnschrift: 'Bahnschrift', sans-serif;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-popins);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bahnschrift);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
}

textarea {
  min-height: 2em;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

.button-style1 {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 11px 22px;
  border: 0;
  border-radius: 30px;
  transition: .3s ease-in;
  background-size: 100% 100%;
  display: inline-block;
}


.button-style1:hover, .button-style3:hover, .button-style2:hover {
  background: linear-gradient(45deg,#06c,#01d3d7,#06c);
  background-size: 300% 300%;
  animation: gradient 10s ease infinite;
  transform: scale(1.02) translateY(-2px);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.button-style2 {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 12px 22px;
  border: 0;
  border-radius: 30px;
  transition: .3s ease-in;
  display: inline-block;
}

.button-style3 {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  transition: .3s ease-in;
  display: inline-block;
}
/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.sticky {
  top: 0;
  background-color: var(--white-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky .logo-wrapper img {
  width: 250px;
}

.header.sticky nav {
  padding: 12px 0 12px 75px;
}

.logo-wrapper img.sticky-logo {
  display: none;
}

.sticky .logo-wrapper img {
  display: none;
}

.sticky .logo-wrapper img.sticky-logo {
  display: block;
}

.sticky .logo-wrapper img {
  background-color: var(--white-color);
}

.header.sticky .header-wrapper nav h5 {
  font-size: 1rem;
}

.header.sticky .header-wrapper nav span {
  font-size: 0.8rem;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header .info-area ul {
  display: flex;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.header .info-area ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-wrapper img {
  padding: 0 30px 5px 0;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 74% 0, 100% 100%, 0 100%);
  width: 300px;
}

.header-wrapper nav {
  width: 100%;
  background-color: var(--white-color);
  padding: 18px 30px 18px 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}

.header-wrapper nav span {
  font-size: 0.9rem;
  color: #6c6c6c;
}

.header-wrapper nav h5 {
  font-size: 1.1rem;
  margin-bottom: -5px;
  color: var(--primary-color);
}

.sticky .header .info-area ul li svg {
  width: 30px;
}

.header-wrapper nav .info-area {
  margin: 0 auto;
}

/* ---------- Hero Section ---------- */


.hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 700px;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #014fd5 0%, #014fd593 100%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  width: 60%;
  margin-top: 100px;
}

.hero-content p {
  margin-bottom: 30px;
}

.hero-image {
  width: 40%;
}

.hero-title {
  color: var(--white-color);
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span {
    color: #fbdb0a;
    padding: 4px 10px;
    line-height: 1.3;
}

.text-white {
  color: var(--white-color) !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.section-padding {
  padding: 5rem 0;
}

.hero-image img {
    padding-bottom: 0;
    margin-bottom: -150px;
    margin-left: -100px;
}

.appointment-form-wrapper,
.our-specialist .wrapper .content {
  padding: 50px;
  border-radius: 8px;
  background-color: var(--light-blue-color);
  margin-top: -50px;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.03) 0px 4px 6px -2px;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-bahnschrift);
}

.appointment-form-wrapper .form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 20px;
}


.hero-title span:first-of-type {
    color: var(--white-color);
}

.hero-title span:nth-of-type(2) {
    color: var(--secondary-color);
}

.hero-title span:nth-of-type(3) {
    color: var(--white-color);
}

.hero-title span:nth-of-type(4) {
    color: var(--secondary-color);
}

.hero-title span span {
    color: #fbdb0a !important;
}

.input-wrapper {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 0;
  border-radius: 5px;
  outline: none;
  box-shadow: rgb(6 84 205 / 13%) 0px 3px 5px;
}


.phone-code {
  display: flex;
  gap: 10px;
}

.phone-code select#countryCode {
  width: 90px;
}

.phone-code input[type="tel"] {
  flex: 1;
}


.form-control:focus {
  box-shadow: rgb(6 84 205 / 22%) 0px 3px 5px;
}

.appointment-form-wrapper .button-style3 {
  padding-left: 40px;
  padding-right: 40px;
}

.appointment-form-wrapper .form-group .item {
  flex: 1;
}

.centered-heading .section-heading {
  text-align: center;
}

.centered-heading {
  position: relative;
}

.centered-heading:before {
  content: "";
  left: 50%;
  bottom: -8px;
  width: 150px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  transform: translateX(-50%);
}

.centered-heading:after {
    content: "+";
    left: 50%;
    bottom: -15px;
    height: 24px;
    position: absolute;
    color: var(--primary-color);
    background-color: var(--white-color);
    padding: 0;
    transform: translateX(-50%);
    z-index: 8;
    width: 30px;
    text-align: center;
    font-size: 1.3rem;
}

.our-specialist .wrapper .content {
  padding: 50px;
  background-color: var(--light-blue-color);
}

.our-specialist .wrapper .content .section-heading {
  font-size: 2rem;
  margin-bottom: 12px;
}

.our-specialist .wrapper .content {
    text-align: left;
    max-width: 60%;
    margin-left: auto;
    margin-top: 60px;
}

.faq-image {
    max-width: 50%;
    position: sticky;
    top: 10px;
}

.why-choose-us {
    background-repeat: no-repeat;
    background-size: cover;
}

.our-specialist {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.our-specialist .wrapper img {
    position: absolute;
    left: 0;
    top: 57%;
    width: 50%;
    transform: translateY(-50%);
}

.our-specialist .wrapper .content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.our-specialist .wrapper .content ul li {
  list-style: disc;
  margin-left: 1rem;
}


.our-specialist .wrapper .content ul li::marker {
  color: var(--primary-color);
}

.whychoose-content .section-heading {
  margin-bottom: 20px;
}

.whychoose-content ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.whychoose-content ul li {
  width: 46%;
  margin-bottom: 10px;
  margin-left: 22px;
  color: var(--white-color);
}

.whychoose-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whychoose-wrapper .whychoose-content p{
    color: var(--white-color);
}

.whychoose-content {
  flex: 1;
}

.whychoose-stats {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.whychoose-stats .item {
  width: 46%;
  background-color: var(--white-color);
  text-align: center;
  align-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.whychoose-stats .item:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--light-blue-color);
}

.whychoose-stats .item .number {
  font-size: 2rem;
  color: var(--primary-color);
  font-family: var(--font-bahnschrift);
  font-weight: 500;
}

.whychoose-stats .item p {
  font-size: 1.2rem;
}

/* Treatment Procedure Styles */
.treatment-proceedure .wrapper {
  margin-top: 70px;
  display: flex;
  gap: 30px;
}

.treatment-proceedure .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 350px;
}

.treatment-proceedure .tab-btn {
  padding: 20px;
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
  border: 0;
  background: linear-gradient(45deg, #ffffff, transparent);
  border-right: 4px solid var(--white-color);
}

.treatment-proceedure .tab-btn.active {
  background: linear-gradient(90deg, #0cd6db 80%, transparent);
  border-color: var(--secondary-color);
}

.treatment-proceedure .tab-number {
  font-size: 1.5rem;
  font-family: var(--font-bahnschrift);
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.treatment-proceedure .tab-btn.active .tab-number {
  color: var(--white-color);
}

.treatment-proceedure .tab-btn h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--primary-color);
  text-transform: uppercase;
}

.treatment-proceedure .tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.treatment-proceedure .tab-content.active {
  display: block;
}

.treatment-proceedure .content-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--light-blue-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.03) 0px 4px 6px -2px;
}

.treatment-proceedure .content-text {
    flex: 1;
    padding: 20px;
}

.treatment-proceedure .content-text p {
  margin-bottom: 20px;
}

.treatment-proceedure .content-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.treatment-proceedure .content-text ul {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}

.treatment-proceedure .content-text ul li {
  margin-bottom: 10px;
  color: var(--paragraph-color);
}

.treatment-proceedure .content-image img {
  width: 350px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-proceedure .content-wrapper:hover .content-image  img{
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.13);
}

.treatment-proceedure .tab-btn.active h3 {
  color: var(--white-color);
}

.treatment-proceedure .wrapper .tab-contents {
  width: calc(100% - 350px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 48%, transparent);
}

.cta-section .content {
  max-width: 60%;
}

.cta-section .section-heading {
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 20px;
}

/* Testimonial Section Styles */
.testimonial-wrapper {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
  /* Add padding to prevent edge cut-off */
}

.testimonial-slider {
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  /* Add consistent gap between slides */
}

.testimonial-slide {
  width: 50%;
  /* Exactly 50% width minus half the gap */
  flex-shrink: 0;
  padding-top: 40px;
}

.testimonial-content {
  border-radius: 10px 130px 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--light-blue-color);
  position: relative;
}

.quote-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: absolute;
    top: 130px;
    left: 7px;
}

.quote-icon:last-of-type {
  top: auto;
  bottom: 4px;
  left: auto;
  right: 30px;
  transform: rotate(181deg);
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 30px 60px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    border-radius: 0 150px 0 0;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -30px;
  left: -9px;
  border: 4px solid var(--primary-color);
  transition: border-color 0.3s ease;
}

.testimonial-content:hover .testimonial-author img {
  border: 4px solid var(--secondary-color);
}

.author-info h4 {
  color: var(--white-color);
  font-size: 2rem;
}

.author-info span {
  color: var(--paragraph-color);
  font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.testimonial-nav button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
    background-color: #ccc;
}

/* Create a smaller inner dot for visual aesthetics while maintaining large touch target */
.testimonial-nav button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: inherit;
}

.testimonial-nav button.active {
  background-color: var(--primary-color);
}

/* Optional: Add hover state */
.testimonial-nav button:hover {
  background-color: var(--primary-color);
  opacity: 0.8;
}

.author-info {
  padding: 0 60px;
}

.faq-section {
  background-color: var(--light-blue-color);
}

.faq-section .container{
  display: flex;
  gap: 0;
  background-color: var(--light-blue-color);
  align-items: start;
}

.faq-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.faq-section .faq-content {
  padding: 50px;
  flex: 1;
}

.faq-wrapper {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-bahnschrift);
  cursor: pointer;
  text-align: left;
  font-size: 1.3rem;
  background-color: var(--secondary-color);
  color: var(--white-color);
  transition: color 0.3s ease;
}

.faq-question svg {
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-question .minus-icon {
  display: none;
}

.faq-item.active .faq-question .plus-icon {
  display: none;
}

.faq-item.active .faq-question .minus-icon {
  display: block;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  background-color: var(--white-color);
  padding: 20px;
}

.faq-answer p {
  color: var(--paragraph-color);
  line-height: 1.6;
}

.footer {
  background-position: center;
  padding: 4rem 0 1rem;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .logo img {
  text-align: center;
  margin: 0 auto 20px auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h4 {
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.about-medotil {
  width: 40%;
}

.footer-contact li {
  list-style: none;
  color: var(--white-color);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-contact li p {
  color: var(--white-color);
}

.footer-contact li h5 {
  font-size: 1.3rem;
}

.footer-contact li svg {
  width: 40px;
  border: 1px solid var(--secondary-color);
  ;
  padding: 7px;
  border-radius: 50%;
}

.social-links svg {
  width: 30px;
}

.social-links a:hover {
  transform: scale(1.05);
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}


.appointment-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.appointment-popup.active {
  display: flex;
}

.popup-content {
  background-color: #f4f9ff;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--paragraph-color);
}

.close-popup:hover {
  color: var(--primary-color);
}

.popup-content .form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.popup-content .input-wrapper {
  margin-bottom: 0;
}

.popup-content input,
.popup-content textarea {
  border: 1px solid #dddddd9d;
}

.popup-content textarea {
  resize: vertical;
  min-height: 100px;
}

.popup-content input:focus,
.popup-content textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.popup-content .heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Make form responsive on mobile */
@media (max-width: 768px) {
  .popup-content {
    padding: 20px;
    width: 95%;
  }
}


@media (max-width: 1400px){
    .hero-title {
        font-size: 3.6rem;
    }
    .logo-wrapper img {
    width: 280px;
    }
    .treatment-proceedure .content-text {
    padding: 25px;
    }
}

@media (max-width: 1300px){
    .hero-image img {
    margin-bottom: -235px;
    }
}

@media (max-width: 1200px){
    .faq-image {
    width: 40%;
    position: sticky;
    top: 0;
    }
    .hero-title {
    font-size: 3rem;
    }
    .section-padding {
    padding: 4.5rem 0;
    }
    .treatment-proceedure .wrapper {
    flex-direction: column;
    }
    .treatment-proceedure .tabs {
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    }
    .treatment-proceedure .wrapper .tab-contents{
        width: 100%;
    }
    .faq-section .faq-content {
    padding: 30px;
    }
    .appointment-form-wrapper, .our-specialist .wrapper .content {
    padding: 30px;
    }
    .testimonial-section.section-padding{
        padding-bottom: 0;    
    }
}

@media (max-width: 1100px){
    .hero-image {
    width: 0;
    display: none;
    }
    .hero-content {
    width: 100%;
    margin-top: 0;
    text-align: center;
    }
    .hero-section {
    height: 650px;
    }
    .whychoose-wrapper {
    flex-direction: column;
    }
    .whychoose-stats{
        justify-content: space-evenly;
    }
    .testimonial-slide {
    width: 100%;
    }
    .cta-section .content {
    max-width: 100%;
    text-align: center;
    }
    .logo-wrapper img {
    padding: 0 30px 0 0;
    }
}

@media (max-width: 1000px){
    .our-specialist .wrapper .content {
    max-width: 80%;
    }
    .header-wrapper nav {
    padding: 12px;
    }
    .button-style1, .button-style2, .button-style3 {
    padding: 10px 20px;
    font-size: 0.9rem;
    }
    .header .info-area ul li svg {
    width: 25px;
    }
    .header-wrapper nav h5 {
    font-size: 1rem;
    }
    .section-padding {
    padding: 4rem 0;
    }
    .header-wrapper {
    align-items: center;
    }
}

@media (max-width: 991px){
    .faq-section .container {
    flex-direction: column-reverse;
    }
    .faq-image{display: none;   
    }
    .treatment-proceedure .content-wrapper {
    flex-direction: column;
    }
    .treatment-proceedure .content-image img {
    width: auto;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
    }
    .treatment-proceedure .content-text {
    align-self: start;
    }
}

@media (max-width: 900px){
    .treatment-proceedure .wrapper {
    margin-top: 35px;
    }
}

@media (max-width: 850px){
    .header-wrapper nav {
    justify-content: end;
    }
    .header .info-area ul li:last-of-type{
        display: none;
    }
}

@media (max-width: 800px){
    .hero-section {
    height: 560px;
    }
    .appointment-form-wrapper .form-group {
    flex-wrap: wrap;
    }
    .appointment-form-wrapper .form-group .item {
    flex: 48%;
    }
    .faq-section .faq-content {
    padding: 30px 0;
    }
    .testimonial-content p {
    padding: 30px 45px;
    }
}

@media (max-width: 700px){
     .hero-title {
    font-size: 2.5rem;
    }
    .our-specialist .wrapper .image {
    display: none;
    }
    .our-specialist .wrapper .content {
    max-width: 100%;
    margin-top: 0;
    }
    .treatment-proceedure .tab-btn {
    padding: 10px;
    }
    .section-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    }
    .section-padding {
    padding: 3.5rem 0;
    }
    .hero-content p {
    margin-bottom: 20px;
    }
    .centered-heading:after{
        display: none;
    }
    .testimonial-wrapper {
    margin-top: 25px;
    }
}

@media (max-width: 650px){
    .footer-content {
    flex-direction: column;
    }
    .about-medotil, .footer-contact {
    width: 100%;
    }
    .footer .logo img {
    margin: 0 0 20px 0;
    }
    .section-padding {
    padding: 3rem 0;
    }
    .treatment-proceedure .content-text h3 {
    margin-bottom: 10px;
    }
}

@media (max-width: 600px){
    .faq-item.active .faq-answer, .faq-question {
    padding: 10px;
    }
    .hero-content {
    margin-top: 30px;
    }
    .hero-title {
    font-size: 2.2rem;
    }
    .section-heading {
    font-size: 2rem;
    }
    .header-wrapper nav, .logo-wrapper img {
    clip-path: unset;
    }
    .logo-wrapper img {
    padding: 0 10px 0 0;
    }
    .header.sticky nav {
    padding: 0;
    }
    .hero-content p {
    font-size: 0.95rem;
    }
    .input-wrapper {
    margin-bottom: 10px;
    }
    .logo-wrapper img {
    width: 200px;
    }
    .social-links {
    margin-bottom: 20px;
    }
    .header.sticky .logo-wrapper img{
        width: auto;
        padding: 5px 0;
    }
    .author-info h4 {
    font-size: 1.8rem;
    }
}

@media (max-width: 576px){
    .header-button {
    display: none;
}
   .treatment-proceedure .tab-btn {
    padding: 6px;
}
.treatment-proceedure .tab-btn h3 {
    font-size: 1.2rem;
}
}

@media (max-width: 450px){
    .appointment-form-wrapper, .our-specialist .wrapper .content {
    padding: 20px;
    }
    .author-info {
    padding: 0 45px;
    }
    .treatment-proceedure .content-image img {
    height: auto;
    margin-top: 0;
    max-height: 350px;
    }
}

@media (max-width: 400px){
    p{
        font-size: 0.95rem;
    }
    .hero-section {
    height: 450px;
}
    .hero-title {
    font-size: 2rem;
    }
    .section-heading, .our-specialist .wrapper .content .section-heading {
    font-size: 1.8rem;
    }
    .quote-icon{
        display: none;
    }
    .testimonial-content p {
    padding: 10px;
    }
    .hero-content p {
    display: none;
    }
    .footer .logo img {
    width: 200px;
    }
    .treatment-proceedure .tab-btn {
    padding: 6px;
}
.treatment-proceedure .tab-btn h3 {
    font-size: 1rem;
}
}

