@import "tailwindcss";
/* @import "./typography.css"; */

:root {
  --bg-white: #ffffff;
  --bg-black: #171717;

}

@theme {
  --breakpoint-lg: 1200px;
  --breakpoint-nav: 1240px;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

*:after,
*:before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

:focus-visible {
  box-shadow: none;
  outline-offset: 0px;
}


html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  background-color: var(--bg-white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ensure smooth marquee scrolling for Swiper */
.myBannerSwiper .swiper-wrapper,
.medicalPartnersSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Hide scrollbar for Chrome, Safari, Opera, Firefox, IE, and Edge */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.scrollbar-none {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* doctors card swiper dot */
.myDoctorSwiper .swiper-pagination,
.myTestimonailSwiper .swiper-pagination {
  position: relative !important;
  margin-top: 56px !important;
}



.myDoctorSwiper .swiper-pagination-bullet,
.myTestimonailSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #B3CCFF;
  opacity: 1;
  margin: 0 12px 0 0 !important;
  transition: all 0.3s ease;
}

.myDoctorSwiper .swiper-pagination-bullet-active,
.myTestimonailSwiper .swiper-pagination-bullet-active {
  background: #1718FF;
  /* transform: scale(1.2); */
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
}

.myDoctorSwiper .swiper-slide,
.myDoctorExpertsSwiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.myDoctorExpertsSwiper .swiper-pagination {
  position: relative !important;
  margin-top: 24px !important;
}

/* clinic services swiper styles */
.myClinicServicesSwiper .swiper-pagination {
  position: relative !important;
  margin-top: 32px !important;
}

.myClinicServicesSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #B3CCFF;
  opacity: 1;
  margin: 0 12px 0 0 !important;
  transition: all 0.3s ease;
}

.myClinicServicesSwiper .swiper-pagination-bullet-active {
  background: #1718FF;
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
}

/* clinic equipments swiper styles */
.myClinicEquipmentsSwiper .swiper-pagination {
  position: relative !important;
  margin-top: 32px !important;
}

.myClinicEquipmentsSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #B3CCFF;
  opacity: 1;
  margin: 0 12px 0 0 !important;
  transition: all 0.3s ease;
}

.myClinicEquipmentsSwiper .swiper-pagination-bullet-active {
  background: #1718FF;
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
}

@media only screen and (min-width: 768px) {
  .myClinicEquipmentsSwiper .swiper-pagination {
    display: none !important;
  }
}

/* Equal height slides for AestheticServices swiper */
.myAestheticServicesSwiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}


@media only screen and (max-width: 767px) {
  .myDoctorSwiper .swiper-pagination {
    display: none !important;
  }
}

/* Swiper navigation button disabled state */
.services-prev.swiper-button-disabled,
.services-next.swiper-button-disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.doctor-prev,
.doctor-next {
  transition: opacity 0.3s ease;
}

.doctor-prev.swiper-button-disabled,
.doctor-next.swiper-button-disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.animate-fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─── Blog Detail: WordPress content styles ─────────────────────────────── */

/* Mobile first: 16px */
.blog-content {
  font-size: 16px;
  line-height: 1.75;
  color: #334D72;
}

/* Tablet / iPad (768px+): 17px */
@media (min-width: 768px) {
  .blog-content {
    font-size: 17px;
  }
}

/* Desktop (1024px+): 18px */
@media (min-width: 1024px) {
  .blog-content {
    font-size: 18px;
  }
}

/* Headings — mobile first */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: #00204F;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  max-width: 950px;
  width: 100%;
}

/* Mobile heading sizes */
.blog-content h1 {
  font-size: 28px;
}

.blog-content h2 {
  font-size: 22px;
}

.blog-content h3 {
  font-size: 19px;
}

.blog-content h4 {
  font-size: 17px;
}

.blog-content h5,
.blog-content h6 {
  font-size: 15px;
}

/* Tablet heading sizes */
@media (min-width: 768px) {
  .blog-content h1 {
    font-size: 36px;
  }

  .blog-content h2 {
    font-size: 26px;
  }

  .blog-content h3 {
    font-size: 22px;
  }

  .blog-content h4 {
    font-size: 19px;
  }

  .blog-content h5,
  .blog-content h6 {
    font-size: 16px;
  }
}

/* Desktop heading sizes */
@media (min-width: 1024px) {
  .blog-content h1 {
    font-size: 48px;
  }

  .blog-content h2 {
    font-size: 32px;
  }

  .blog-content h3 {
    font-size: 24px;
  }

  .blog-content h4 {
    font-size: 20px;
  }

  .blog-content h5,
  .blog-content h6 {
    font-size: 16px;
  }

  .blog-content h1,
  .blog-content h2,
  .blog-content h3,
  .blog-content h4,
  .blog-content h5,
  .blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
}

/* Paragraphs */
.blog-content p {
  margin-bottom: 1rem;
  font-size: inherit;
  /* inherits from .blog-content breakpoints */
  line-height: 1.75;
  max-width: 850px;
  width: 100%;
}

/* Strong / bold */
.blog-content strong,
.blog-content b {
  color: #00204F;
  font-weight: 700;
  font-size: inherit;
}

/* Links */
.blog-content a {
  color: #1718FF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.blog-content a:hover {
  color: #0004d4;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  max-width: 850px;
  width: 100%;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 8px;
  font-size: inherit;
  line-height: 1.7;
}


/* Blockquote */
.blog-content blockquote {
  background: #EEF2FF;
  border-left: 4px solid #1718FF;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  color: #00204F;
  font-style: italic;
  font-weight: 500;
  max-width: 850px;
  width: 100%;
}

/* Tables */
.blog-content table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #D0DAE8;
  display: table;
}

/* Mobile horizontal scroll wrapper */
.blog-content .table-wrapper,
.blog-content figure.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid #D0DAE8;
}

.blog-content .table-wrapper table,
.blog-content figure.wp-block-table table {
  margin: 0;
  border-radius: 0;
  border: none;
}

@media (max-width: 767px) {
  .blog-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.blog-content thead {
  background-color: #00204F;
  color: #ffffff;
}

.blog-content thead th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.blog-content thead th:first-child {
  text-align: left;
}

.blog-content thead th:last-child {
  border-right: none;
}

.blog-content tbody tr {
  border-bottom: 1px solid #E5E9ED;
  transition: background 0.15s ease;
}

.blog-content tbody tr:nth-child(even) {
  background-color: #EEF3FB;
}

.blog-content tbody tr:last-child {
  border-bottom: none;
}

.blog-content tbody tr:hover {
  background-color: #EEF2FF;
}

.blog-content tbody td {
  padding: 14px 20px;
  vertical-align: middle;
  color: #334D72;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  border-right: 1px solid #E5E9ED;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-content tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #00204F;
}

.blog-content tbody td:last-child {
  border-right: none;
}


/* Images inside content */
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  display: block;
}

/* WordPress standard image alignments */
.blog-content img.aligncenter,
.blog-content .aligncenter img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-content img.alignleft,
.blog-content .alignleft img {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content img.alignright,
.blog-content .alignright img {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Clear floats after aligned images */
.blog-content::after {
  content: "";
  display: table;
  clear: both;
}

/* Horizontal rule */
.blog-content hr {
  border: none;
  border-top: 1px solid #E5E9ED;
  margin: 2rem 0;
}

/* ─── Calendly Clean White Screen Overlay Customization ─────────────────── */
.calendly-overlay {
  background-color: #ffffff !important;
  z-index: 99999999 !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Ensure close button 'X' is crisp dark navy/black on white background */
.calendly-overlay .calendly-popup-close {
  filter: invert(1) !important;
  opacity: 0.85;
  top: 20px !important;
  right: 20px !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.calendly-overlay .calendly-popup-close:hover {
  opacity: 1;
  transform: scale(1.1) !important;
}

/* Style the popup container nicely over clean white background */
.calendly-overlay .calendly-popup {
  border-radius: 20px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* CookieYes powered-by element */
[data-cky-tag="powered-by"] {
  display: none !important;
}