@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
/* Scrollbar Styling for Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px; /* scrollbar की चौड़ाई */
}

::-webkit-scrollbar-track {
  background: #fff; /* हल्का बैकग्राउंड */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background:  #cc88cc; /* purple color */
  border-radius: 10px;
  border: 2px solid #f3e6ff; /* हल्की बॉर्डर */
}

::-webkit-scrollbar-thumb:hover {
  background:  #cc88cc; /* hover पर गहरा purple */
}

/* Smooth Scroll Effect */
html {
  scroll-behavior: smooth;
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin; /* पतला scrollbar */
  scrollbar-color:  #cc88cc #f3e6ff; /* thumb color | track color */
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* ================= Top Bar ================= */
.top-bar {
  background-color: #3f3546;
  color: #a99ab1;
  padding: 10px 15px;
  font-size: 14px;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #a99ab1;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* For Tablet & Desktop */
@media (min-width: 768px) {
  .top-bar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .info-item {
    justify-content: flex-start;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-end;
  }
}

/* ================= Navbar ================= */
.navbar .container {
  max-width: 75rem; /* 1200px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgb(0, 0, 0, 0.1); /* 2px 4px */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem; /* 80px */
}

.logo img {
  height: 3rem; /* 40px */
  object-fit: contain;
}

/* ================= Desktop Navigation ================= */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem; /* 24px */
  align-items: center;
}

.desktop-nav li {
  position: relative;
}
.desktop-nav ul li a:hover {
  color: #c084fc;
  transition: all 2s 0.5 ease-in;
}

.desktop-nav a,
.desktop-nav .dropdown-toggle {
  font-weight: 500;
  color: #242424;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.desktop-nav .dropdown-toggle i {
  margin-left: 0.3125rem; /* 5px */
}

/* ================= Dropdown Menu ================= */

/* Dropdown Menu Base */
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  z-index: 999;
  width: 300px !important;
  padding: 0.5rem 0;
  border-radius: 8px;
}

/* Show dropdown on hover (Desktop) or class (Mobile) */
.desktop-nav .dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  display: flex !important;
}

/* Each Dropdown Link */
.dropdown-menu a {
  padding: 0.75rem 1rem;
  color: #374151;
  font-size: 0.9rem;
  line-height: 0.3rem !important;
  text-decoration: none;
  width: 100%;
  display: block;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  text-align: left;
}

/* Remove border from last link */
.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Hover effect - light purple */
.dropdown-menu a:hover {
  background-color: #ede9fe;
  color: #6b21a8;
}

/* Active or focus state */
.dropdown-menu a.active,
.dropdown-menu a:focus {
  background-color: #6b21a8;
  color: #ffffff;
}

/* ========== Hamburger Menu Button ========== */
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b21a8;
  padding: 0.5rem;
}

/* ========== Mobile Navigation ========== */
.mobile-nav {
  display: none;
  background: #fff;
  padding: 0.75rem;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 8px 8px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: #4b5563;
  padding: 0.6rem 0.5rem;
}

.mobile-nav ul ul {
  padding-left: 1rem;
  margin-top: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: #6b21a8;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  line-height: 1.4;
  border-radius: 4px;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.mobile-nav a.active,
.mobile-nav a:focus {
  background-color: #6b21a8;
  color: #ffffff;
}

/* ================= Responsive: Mobile Only ================= */
@media (max-width: 47.9375rem) {
  /* 767px */
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.open {
    display: block;
  }

  .top-bar-container {
    flex-direction: column;
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 0.75rem;
  }
}

/* ================= Responsive: Tablet and Up ================= */
@media (min-width: 48rem) {
  /* 768px */
  .desktop-nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* ================= Responsive: Desktop ================= */
@media (min-width: 64rem) {
  /* 1024px */
  .desktop-nav {
    display: block;
  }
}

/*footer page css */

/* Main Footer Container */
.footer-page {
  background-color: #1f2937; /* Tailwind's bg-gray-900 */
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  position: relative;
}

/* WhatsApp Floating Button */
.footer-page__whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #22c55e; /* green-500 */
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
}
.footer-page__whatsapp:hover {
  background-color: #16a34a; /* green-600 */
}

/* Inner Container */
.footer-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid Layout */
.footer-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-page__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Logo and Description */
.footer-page__logo {
  width: 10rem;
  margin-bottom: 1rem;
}
.footer-page__description {
  color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.footer-page__readmore {
  color: #c084fc; /* purple-400 */
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}
.footer-page__readmore::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__readmore:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-page__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-page__social a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  position: relative;
}
.footer-page__social a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__social a:hover::after {
  width: 100%;
}

/* Navigation Links */
.footer-page__nav h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 0.75rem;
}
.footer-page__nav ul {
  list-style: none;
  padding: 0;
}
.demo-change a {
  margin-left: 10px;
  font-size: 1rem;
}
.demo-unchange a {
  font-size: 1rem;
}
.footer-page__nav li {
  margin-bottom: 0.5rem;
}
.footer-page__nav a {
  color: #d1d5db; /* text-gray-300 */
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color 0.3s ease;
}
.footer-page__nav a:hover {
  color: #facc15; /* yellow-400 on hover */
}
.footer-page__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__nav a:hover::after {
  width: 100%;
}

/* Contact Section */
.footer-page__contact .active-links {
  font-size: 1.125rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 0.75rem;
}
.footer-page__clinic {
  margin-bottom: 1rem;
}
.footer-page__clinic p strong {
  font-size: 0.9rem;
}
.footer-page__clinic ul {
  color: #d1d5db;
  margin: 0.25rem 0;
  padding: 0;
  list-style: none;
}
.footer-page__phone {
  color: #fff; /* purple-300 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-page__phone a {
  color: plum;
  text-decoration: none;
}
/* Bottom Footer */
.footer-page__bottom {
  border-top: 1px solid #374151; /* gray-700 */
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #9ca3af; /* text-gray-400 */
}
@media (min-width: 768px) {
  .footer-page__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Credit */
.footer-page__credit {
  color: white;
  cursor: pointer;
}
.footer-page__credit:hover {
  text-decoration: underline;
}
/*footer page end here */

/*footer page css */

/* Main Footer Container */
.footer-page {
  background-color: #1f2937; /* Tailwind's bg-gray-900 */
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  position: relative;
}

/* WhatsApp Floating Button */
.footer-page__whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #22c55e; /* green-500 */
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
}
.footer-page__whatsapp:hover {
  background-color: #16a34a; /* green-600 */
}

/* Inner Container */
.footer-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid Layout */
.footer-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-page__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Logo and Description */
.footer-page__logo {
  width: 10rem;
  margin-bottom: 1rem;
}
.footer-page__description {
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.footer-page__readmore {
  color: #c084fc; /* purple-400 */
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-top: 0.5rem;
}
.footer-page__readmore::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__readmore:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-page__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-page__social a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  position: relative;
}
.footer-page__social a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__social a:hover::after {
  width: 100%;
}

/* Navigation Links */
.footer-page__nav .active-links{
  font-size: 1.125rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 0.75rem;
}
.footer-page__nav ul {
  list-style: none;
  padding: 0;
}
.footer-page__nav li {
  margin-bottom: 0.5rem;
}
.footer-page__nav a {
  color: #d1d5db; /* text-gray-300 */
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.footer-page__nav a:hover {
  color: #facc15; /* yellow-400 on hover */
}
.footer-page__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.footer-page__nav a:hover::after {
  width: 100%;
}

/* Contact Section */
.footer-page__contact h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 0.75rem;
}
.footer-page__clinic {
  margin-bottom: 1rem;
}
.footer-page__clinic ul {
  color: #d1d5db;
  margin: 0.25rem 0;
  padding: 0;
  list-style: none;
}
.footer-page__phone {
  color: #d8b4fe; /* purple-300 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Bottom Footer */
.footer-page__bottom {
  border-top: 1px solid #374151; /* gray-700 */
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #9ca3af; /* text-gray-400 */
}
@media (min-width: 768px) {
  .footer-page__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Credit */
.footer-page__credit {
  color: white;
  cursor: pointer;
}
.footer-page__credit:hover {
  text-decoration: underline;
}
/*footer page end here */

/*crawsel section here*/

/*testimonal css start here */
#testimonial-section-long-unique {
  background: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

#testimonial-container-unique {
  max-width: 960px;
  margin: 0 auto;
}

#testimonial-heading-unique {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Swiper Carousel Container */
#testimonial-swiper-unique.swiper {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

#testimonial-swiper-unique .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background: #efefef;
  border-radius: 10px;
  min-height: 400px;
}

.testimonial-content-unique {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-icon-unique {
  width: 50px;
  margin-bottom: 20px;
}

.testimonial-text-unique {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
}

.testimonial-image-unique {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #a175aa;
}

.testimonial-name-unique {
  font-weight: bold;
  color: #222;
  font-size: 1.1rem;
}

/* Pagination styling */
#testimonial-swiper-unique .swiper-pagination-bullet {
  background: #888;
  opacity: 1;
}
#testimonial-swiper-unique .swiper-pagination-bullet-active {
  background: #a175aa;
}

/* Responsive */
@media (max-width: 768px) {
  #testimonial-heading-unique {
    font-size: 1.5rem;
  }

  .testimonial-text-unique {
    font-size: 0.95rem;
  }
}
/*testimonial end here*/
.about-main-section .hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.about-main-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-main-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.about-main-section .hero-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 800px;
}

.about-main-section .hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.about-main-section .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-main-section .breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
}

.about-main-section .breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.about-main-section .breadcrumb .chevron {
  color: #ccc;
}

/* ABOUT DOCTOR SECTION */
.about-main-section .about-content {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.about-main-section .about-doctor {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-main-section .about-doctor {
    flex-direction: row;
  }
}
