* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-navigation: "Montserrat", sans-serif;
  --font-subheading: "Quicksand", sans-serif;
  --font-button: "Oswald", sans-serif;
  --main-color: #5a66c5;
  --heading-size: 6rem;
  --subheading-size: 2rem;
  --awards-heading-font: 3.5rem;
  --text-color: #333;
  --bg-light: #f9f9f9;
  --bg-dark: #1f1f1f;
  --border-radius: 1rem;
}

body {
  font-family: var(--font-body);
}
html,
body {
  overflow-x: hidden;
}
.hero-section {
  overflow: hidden;
}
.navbar {
  position: fixed;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--main-color);
}

.nav-links {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-navigation);
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--main-color);
}

.nav-links .btn {
  padding: 0.6rem 1.2rem;
  background-color: var(--main-color);
  color: white;
  border-radius: 5px;
  font-family: var(--font-button);
  transition: 0.3s ease;
}

.nav-links .btn:hover {
  background-color: #4752a7;
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  transition: 0.3s ease-in-out;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* mobile navbar */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 2rem;
  transition: right 0.4s ease-in-out;
  z-index: 999;
  border-left: 2px solid var(--main-color);
}
.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  text-decoration: none;
  color: #1f1f1f;
  font-family: var(--font-navigation);
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s;
}

.mobile-nav a:hover {
  color: var(--main-color);
}

.mobile-nav a:hover::after {
  width: 100%;
}

.mobile-nav .btn {
  background-color: var(--main-color);
  color: #fff;
  font-family: var(--font-button);
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.mobile-nav .btn:hover {
  background-color: #4a55a3;
}

/* hero section */

.hero-heading {
  font-family: var(--font-heading);
  color: var(--main-color);
  font-size: 4rem;
}

.hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--main-color);
  border: 8px solid #c0dfff;
  color: white;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.text {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: 1px;
}
.svg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}
.svg svg {
  width: 50px;
  height: 30px;
}
.hero-button:hover {
  border: 8px solid #b1d8ff;
}
.hero-button:active {
  border: 5px solid #c0dfff;
}
.hero-button:hover .svg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.hero-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shape-2 {
  position: absolute;
  top: 70px;
  right: 105px;
  width: 100px;
}
/* what we do section */
#what-we-do {
  background-image: url("../images/wedo.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 700px;
}
.service-paragraph {
  width: 100%;
  max-width: 700px;
  color: #fff;
  background-color: var(--main-color);
  padding: 30px 40px;
  border-radius: 8px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
}
.service-paragraph::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  transform: rotate(-5deg);
}

.heading {
  font-size: var(--heading-size);
  font-family: var(--font-heading);
}
.image-heading {
  font-family: var(--font-heading);
  font-size: var(--heading-size);
  color: var(--main-color);
}
.image-paragraph {
  font-family: var(--font-body);
  color: var(--main-color);
  font-size: 1.5rem;
}
.image-container {
  position: relative;
  padding: 6rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.5);
}
.subheading {
  font-family: var(--font-subheading);
  font-size: var(--subheading-size);
  font-weight: 700;
}
.awrds-heading {
  font-family: var(--font-heading);
  font-size: var(--awards-heading-font);
}
.paragraph {
  font-family: var(--font-body);
  line-height: 1.7;
}
.btn-read-more {
  color: white;
  font: var(--font-button);
}

.scrolldown {
  --color: var(--main-color);
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

/* smooth service section */
#smoooth-service {
  background-image: url("../images/smooth.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* make it habit section */
#habit {
  background-image: url("../images/habit.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
}
/* awards section */
#awards {
  background-color: var(--main-color);
  color: white;
}
/* team section */
#team {
  background-color: var(--main-color);
  color: white !important;
}
.doctor-img-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.doctor-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#team p,
#team li {
  font-family: var(--font-body);
  line-height: 1.8;
}

#team .bi-check2-circle {
  font-size: 1.1rem;
}
/*  experience section */

.experience-heading {
  font-family: var(--font-heading);
  font-size: var(--heading-size);
  color: var(--main-color);
  font-weight: 500;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: #5a66c5;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a66c5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#smile {
  background-image: url("../images/smile.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 750px;
  position: relative;
  color: white;
}

.smile-heading {
  font-family: var(--font-subheading);
  font-size: var(--heading-size);
  font-weight: 700;
  color: var(--main-color);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-smile {
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-smile:hover {
  background-color: #4a54b3;
  color: #fff;
}

/* review section */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.profile-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.profile-icon {
  width: 70px;
  height: 70px;
  background-color: var(--main-color);
  color: white;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.google-badge {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: calc(50% - 20px);
  transform: translateY(50%);
  padding: 4px;
  z-index: 2;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #333;
}

.review-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.star-rating {
  color: #fbc02d;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.review-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
/* Footer */
.footer {
  font-family: var(--font-body);
  color: #fff;
}
.footer-col.contact a {
  color: #fff;
}

.footer-col.contact a:hover {
  text-decoration: underline;
  color: #e0e0ff;
}

/* Main section */
.footer-main {
  background: var(--main-color);
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer-col.links ul {
  list-style: none;
  padding: 0;
}
.footer-col.links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col.links ul li a:hover {
  color: #e0e0ff;
}

/* Social icons */
.footer-socials a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: white;
}
.footer-socials a:hover {
  transform: translateY(-3px);
}

/* Contact icons */
.footer-col.contact ul {
  list-style: none;
  padding: 0;
}
.footer-col.contact ul li {
  display: flex;
  align-items: center;
}
.footer-col.contact ul li i {
  width: 1.25rem;
  text-align: center;
  margin-right: 0.5rem;
}

/* Bottom bar */
.footer-bottom {
  background: var(--main-color);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
  margin: 0;
  font-family: var(--font-subheading);
  color: white;
}
.footer-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #e0e0ff;
}

/* contact page */

.contact-section {
  background: linear-gradient(rgba(92, 107, 192, 0.8), rgba(92, 107, 192, 0.8)),
    url("../images/head-banner.jpg") center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: white;
  padding-top: 9rem;
}

.contact-heading {
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 20px;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
.contact-info {
  background-color: #eef0fb;
  border-radius: 10px;
  padding: 30px;
  font-family: var(--font-body);
}
.contact-info h5 {
  font-weight: 600;
  font-family: var(--font-subheading);
}
.form-control:focus {
  box-shadow: none;
  border-color: #5a66c5;
}
.btn-primary {
  background-color: #5a66c5;
  border: none;
}
.btn-primary:hover {
  background-color: #4b56aa;
}
.map-container {
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* about us page */
.about-us-section {
  padding-top: 5rem !important;
  background-color: var(--bg-light);
}
.fixed-img-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fixed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-us-section h2,
.about-us-section h3,
.about-us-section h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-us-section h2 {
  font-size: var(--heading-size);
  color: var(--main-color);
}

.about-us-section h3,
.about-us-section h4 {
  color: var(--main-color);
}

.about-us-section .lead,
.about-us-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-us-section img {
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  object-fit: cover;
}

.highlight-box {
  background-color: white;
  color: #333;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box i {
  color: var(--main-color);
}
/* WhatsApp Live Chat Button */
.whatsapp-live {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  z-index: 999;
}

.chat-bubble {
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: background-color 0.3s ease;
}

.chat-bubble:hover {
  background-color: #1ebe5d;
}

.chat-status {
  font-size: 22px;
}

.chat-status .dot {
  position: absolute;
  bottom: 0;
  right: -2px;
  height: 10px;
  width: 10px;
  background-color: #00ff00;
  border: 2px solid white;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

.chat-msg .line1 {
  font-weight: 600;
  font-size: 14px;
}

.chat-msg .line2 {
  font-size: 13px;
  opacity: 0.95;
  color: #f4f4f4;
}

.typing {
  animation: typing 5s steps(36, end) infinite;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  width: 0;
}

@keyframes typing {
  0% {
    width: 0;
  }
  40% {
    width: 20ch;
  }
  80% {
    width: 20ch;
  }
  100% {
    width: 0;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-mobile-button {
  display: none;
}

/* gallery page */

.gallery-hero .heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--main-color);
  margin-bottom: 0.5rem;
}

.gallery-hero .subheading {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  color: var(--text-muted);
}
.gallery-hero {
  padding-top: 111px;
  text-align: center;
}

.gallery-hero .heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--main-color);
  margin-bottom: 0.5rem;
}

.gallery-hero .subheading {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Masonry Layout Core */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.masonry-item img {
  width: 100%;
  max-height: 450px;
  min-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-item img:hover {
  transform: scale(1.03);
}

/* service page */
.service-hero-section {
  background: linear-gradient(rgba(92, 107, 192, 0.8), rgba(92, 107, 192, 0.8)),
    url("../images/head-banner.jpg") center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: white;
  padding-top: 9rem;
}
.services {
  width: 100vw;
  overflow-x: hidden;
}

.service-hero-section p {
  font-size: 1.2rem;
  font-family: var(--font-subheading);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}
.service-card .image-wrapper {
  width: 300px;
  height: 170px;
  margin: 0 auto 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.3rem;
  font-family: var(--font-subheading);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
}

.service-cta-btn {
  background-color: var(--main-color);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: var(--font-button);
  font-size: 1.2rem;

  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}
.filter-btn {
  margin: 0.25rem;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #e3e3e3;
  color: #333;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background-color: var(--main-color);
  color: #fff;
}

.service-item {
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
}

.service-item.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}
.service-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 0 40px;
}

/* Scrollable Buttons Row */
.filter-buttons-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 12px;
  padding: 12px 20px;
}
.filter-buttons-scroll::-webkit-scrollbar {
  display: none;
}

/* Buttons Design */
.filter-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  background: #f4f4f4;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--main-color);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Scroll Arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 20px;
  padding: 5px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: #f0f0f0;
}

.scroll-btn.left {
  left: 5px;
}

.scroll-btn.right {
  right: 5px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .filter-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .filter-scroll-wrapper {
    padding: 0 20px;
  }

  .scroll-btn {
    font-size: 18px;
    padding: 6px 10px;
  }
}

.service-cta-btn:hover {
  color: white;
  background-color: #3e4a99;
  transform: translateY(-5px);
}

.service-cta-btn:focus {
  outline: none;
}
.popup-toast {
  display: none;
}
.whatsapp-fast-link {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-fast-link:hover {
  background-color: #1ebe5d;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.trust-badge {
  padding: 15px;

  margin-top: 20px;
}

.trust-badge p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}
.call-now-button {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #0d6efd;
  z-index: 999;
  color: white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: floatBounce 2s infinite ease-in-out;
}

/* Icon style */
.call-now-button i {
  font-size: 20px;
}

/* Floating bounce animation */
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.privacy-policy,
#terms-conditions {
  padding-top: 8rem !important;
}
/* Main Section */
.invisalign-section {
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-top: 50px;
  position: relative;
}
.invisalign-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.invisalign-subtext {
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.qr-wrapper {
  text-align: center;
}

.qr-img {
  max-width: 180px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.qr-caption {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}
.btn-sm {
  color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 10px 20px;
}
.btn-sm:hover {
  background-color: var(--main-color);
  color: white;
  border: 2px solid var(--main-color);
}

.invisalign-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
}

.invisalign-info img {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.selfie-heading {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.selfie-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.try-btn {
  padding: 1rem 2.5rem;
  background-color: #5a66c5;
  color: white;
  border-radius: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.try-btn:hover {
  background-color: #4b57a2;
  color: white;
  transform: translateY(-3px);
}

.powered-by {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #999;
}

.provider-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #5a66c5;
}

.provider-text a {
  text-decoration: none;
  color: #5a66c5;
  font-weight: 600;
}

.provider-text a:hover {
  text-decoration: underline;
}
.invisalign-section img {
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.invisalign-info {
  padding-left: 1rem;
}
.gallery-tabs-custom .nav-link {
  background-color: #f8f9fa;
  color: #0d6efd;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.gallery-tabs-custom .nav-link:hover {
  background-color: #e0eaff;
  color: #084298;
}

.gallery-tabs-custom .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}
/* Modal content styles */
.whatsapp-modal-content {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 2rem;
}

/* Modal image styles */
.whatsapp-modal-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dim & blur modal backdrop */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.3);
} /* Custom Error Styles */
.invalid-feedback {
  display: none;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: red;
}

.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
  box-shadow: 0 0 5px red;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
  display: block;
}
.is-valid {
  border-color: green !important;
  box-shadow: 0 0 5px green !important;
}

.is-invalid {
  border-color: red !important;
  box-shadow: 0 0 5px red !important;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.iti {
  width: 100%;
}
