@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
}

:root {
  --theme-color: #02aacf;
  --theme-hover: #1e2858;
  --theme-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
}

.theme-color {
  color: var(--theme-color);
}

.white-color {
  color: #fff !important;
  font-size: inherit;
  font-family: inherit;
}

.black-color {
  color: #000 !important;
  font-size: inherit;
  font-family: inherit;
}

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

p {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
}

ul.style-list li {
  position: relative;
  line-height: 1.9;
}
ul.style-list li:before {
  content: "\f105";
  font-family: "fontawesome";
  left: -20px;
  position: absolute;
  color: var(--theme-color);
}

.darkbg {
  background-color: #1d1f22;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.common-heading {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--theme-color);
  margin-bottom: 25px;
  position: relative;
}
.common-heading.center-before::before {
  left: 50%;
  transform: translateX(-50%);
}
.common-heading:before {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: -5px;
}

.common-btn {
  padding: 12px 22px;
  line-height: 1.4em;
  font-size: 18px;
  background: var(--theme-color);
  color: #fff;
  transition: all 0.3s;
  border-radius: 50px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: none;
  align-items: center;
}
.common-btn::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  background: var(--theme-hover);
  z-index: 0;
}
.common-btn:hover::before {
  width: 100%;
}
.common-btn span, .common-btn i {
  position: relative;
  z-index: 1;
}
.common-btn i {
  background: var(--theme-hover);
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}
.common-btn.btn-2 {
  background: var(--theme-hover);
}
.common-btn.btn-2 i {
  background: var(--theme-color);
}
.common-btn.btn-2::before {
  background: var(--theme-color);
}

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

.common-space {
  padding: 100px 0;
}

header.not-home .header-top {
  background: white;
}
header.site-header {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 111;
  width: 100%;
}
header.site-header .search-form input {
  padding: 15px 10px;
}
header.site-header.sticky .header-top {
  height: 0px;
  padding: 0px;
  overflow: hidden;
}
header .header-top {
  padding: 0.1rem 0;
  background-color: rgba(255, 255, 255, 0.5215686275);
  height: 90px;
  transition: 0.3s;
}
header .header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
header .header-logo img {
  max-height: 80px;
}
header .header-logo span {
  font-size: 0.8rem;
  color: var(--theme-hover);
  font-weight: 600;
  margin-top: 0.5rem;
}
header .search-form .form-control {
  border-color: #dee2e6;
}
header .search-form .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.25rem rgba(2, 170, 207, 0.25);
}
header .search-form .btn-search {
  background-color: var(--theme-hover);
  color: #fff;
  border-color: var(--theme-hover);
  min-width: 65px;
}
header .search-form .btn-search:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
header .certification-img {
  text-align: center;
}
header .certification-img img {
  max-height: 70px;
}
header .certification-img p {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
  margin-top: 0.25rem;
}
header .header-nav {
  background-color: var(--theme-hover);
  border-top: 0px solid #f0f2f5;
}
header .header-nav .navbar-toggler {
  border: none;
  color: var(--theme-hover);
  font-size: 1.5rem;
}
header .header-nav .navbar-toggler:focus {
  box-shadow: none;
}
header .header-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
header .header-nav .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1rem;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
}
header .header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 3px;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
header .header-nav .nav-link:hover, header .header-nav .nav-link.active {
  color: var(--theme-color);
}
header .header-nav .nav-link.active::after {
  transform: scaleX(1);
}
header .header-nav .nav-link:hover::after {
  transform: scaleX(1);
}
header .header-nav .dropdown-menu {
  border-radius: 0;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-height: 400px;
  overflow-y: auto;
}
header .header-nav .dropdown-item {
  font-weight: 500;
  color: var(--theme-hover);
}
header .header-nav .dropdown-item:hover, header .header-nav .dropdown-item:focus {
  background-color: var(--theme-color);
  color: #fff;
}
header .btn-appointment {
  background-color: var(--theme-color);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
header .btn-appointment:hover {
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 170, 207, 0.2);
}
header .right-social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: lg-end;
  gap: 0.5rem;
}
header .right-social span {
  color: var(--theme-hover);
  font-weight: 600;
  margin-right: 0.5rem;
}
header .right-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}
header .right-social a i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .right-social a i:hover {
  transform: scale(1.1);
  background-color: var(--theme-hover);
}
header .right-social a:hover {
  color: var(--theme-hover);
}
header .right-social a .cla-header {
  font-size: 18px;
  font-weight: 600;
}
header .right-social a .cla-header span {
  font-size: 14px;
}
header .right-social a .cla-header p {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: -7px;
  font-weight: 500;
}
header .right-social a .cla-header p:hover {
  color: var(--theme-hover);
}

.banner-home {
  position: relative;
}
.banner-home .bnr-img-overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(177deg, rgba(255, 255, 255, 0.44), rgba(30, 40, 88, 0.32));
  z-index: 10;
  position: absolute;
  top: 0;
  z-index: 0;
}
.banner-home .img-wrapper-bnr img {
  width: 100%;
  top: 0;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner-home .banner-content {
  position: absolute;
  top: 60%;
  z-index: 31;
  width: 100%;
  color: #fff;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}
.banner-home .banner-content h2 {
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 1px #000;
}
.banner-home .banner-content h2 span {
  color: var(--theme-color);
}
.banner-home .banner-content p {
  line-height: 1.5rem;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 0;
}
.banner-home .banner-content .break {
  display: block;
}
.banner-home .desktop-img {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.banner-home .banner-btns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.banner-home .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}
.banner-home button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-home button.owl-prev span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
}
.banner-home button.owl-prev span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
.banner-home button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-home button.owl-next span {
  font-size: 40px;
  border: solid 3px #ddd;
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}
.banner-home button.owl-next span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.topss {
  padding: 50px 0 38px;
  background-color: #1d1f22;
  color: #fff;
  margin-top: -7px;
}
.topss p {
  color: #fff;
  padding-bottom: 0;
}

.two-wrappers {
  background-image: linear-gradient(112deg, #ededed 50%, rgba(247, 247, 247, 0) 49%), url(img/bg-scene.jpg);
  background-attachment: fixed;
  background-position: center;
}

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

.num .coun-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.num .coun-rows .fact-area {
  border-right: solid 2px #e9e9e9;
}
.num .coun-rows .fact-area .info {
  position: relative;
}
.num .coun-rows .fact-area .info .timer {
  font-size: 160px;
  text-align: center;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #efefef;
  line-height: 1;
}
.num .coun-rows .fact-area .info .medium {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: 600;
  font-family: var(--heading-font);
  text-transform: uppercase;
}
.num .coun-rows .fact-area:last-child {
  border: 0;
}

.diagnostics-section {
  margin-top: -65px;
  position: relative;
  z-index: 10;
  /* --- Left Panel --- */
  /* --- Right Panel --- */
}
.diagnostics-section .left-panel {
  background-color: var(--theme-color);
  border-radius: 1rem;
  min-height: 450px;
  padding: 35px;
}
.diagnostics-section .left-panel .background-icon {
  position: absolute;
  right: -50px;
  bottom: -30px;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  z-index: 0;
  filter: invert(1);
}
.diagnostics-section .left-panel h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.diagnostics-section .left-panel h3 span {
  display: block;
  color: var(--theme-hover);
  font-family: var(--heading-font);
}
.diagnostics-section .left-panel h3, .diagnostics-section .left-panel p, .diagnostics-section .left-panel .btn {
  position: relative;
  z-index: 1;
}
.diagnostics-section .left-panel p {
  color: white;
  font-size: 16px;
}
.diagnostics-section .btn-diagnostic {
  background-color: var(--theme-hover);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.diagnostics-section .btn-diagnostic .arrow-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.diagnostics-section .btn-diagnostic .arrow-wrapper img {
  width: 16px;
  height: 16px;
  filter: invert(12%) sepia(26%) saturate(3025%) hue-rotate(211deg) brightness(97%) contrast(92%);
}
.diagnostics-section .btn-diagnostic:hover {
  background-color: var(--theme-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.diagnostics-section .btn-diagnostic:hover .arrow-wrapper {
  transform: translateX(4px);
}
.diagnostics-section .right-panel {
  background-color: #f0f2f5;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
}
.diagnostics-section .grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.diagnostics-section .service-box {
  background-color: white;
  border-radius: 0.75rem;
  padding: 20px 15px;
  text-align: center;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.diagnostics-section .service-box .icon {
  height: 48px;
  width: 48px;
  margin-bottom: 15px;
  /* Your SVG image files should be pre-colored with #02aacf */
}
.diagnostics-section .service-box .service-name {
  font-size: 16pxm;
  color: var(--theme-hover);
  margin: 0;
  line-height: 1.3;
}
.diagnostics-section .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(30, 40, 88, 0.1);
  border-color: var(--theme-color);
}

.subheading {
  color: var(--theme-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  color: var(--theme-hover);
  font-weight: 700;
}

/* --- Why Choose Us Section Specifics (More Accurate Version) --- */
.why-choose-us-section {
  background-color: #fff;
}
.why-choose-us-section .common-heading {
  font-size: 42px;
}
.why-choose-us-section .img-box {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.why-choose-us-section .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.why-choose-us-section p {
  text-align: justify;
}

.stats-section {
  position: relative;
  z-index: 5;
}

.stats-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.stats-grid {
  display: grid;
  gap: 2rem 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px dashed #dee2e6;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--theme-hover);
  margin-bottom: 0.5rem;
}
.stat-number .suffix {
  display: inline-block;
}

.stat-label {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item {
    border-right: 1px dashed #dee2e6;
  }
}
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 0 1.5rem;
    border-right: 1px dashed #dee2e6;
  }
  .stat-item:last-child {
    border-right: none;
  }
}
.testimonial-section {
  position: relative;
  background: linear-gradient(45deg, rgba(30, 40, 88, 0.9254901961), rgba(30, 40, 88, 0.8823529412)), url("img/testimonials_25_percent.jpg");
  padding: 5rem 0;
  overflow: hidden;
}
.testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}
.testimonial-section button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-section button.owl-prev span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.testimonial-section button.owl-prev span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
.testimonial-section button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-section button.owl-next span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.testimonial-section button.owl-next span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
.testimonial-section .subheading.on-dark {
  color: white;
}
.testimonial-section .section-title.on-dark {
  color: var(--theme-color);
}
.testimonial-section .testimonial-card {
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-section .testimonial-body {
  padding: 4rem 2rem 2rem;
  position: relative;
  text-align: center;
  color: var(--theme-hover);
  font-style: italic;
  background-color: #f8f9fa;
  flex-grow: 1;
  background: #edf3f6;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.testimonial-section .testimonial-body .over {
  background: url("img/waves.png");
  opacity: 0.05;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.testimonial-section .testimonial-body::before {
  content: "“";
  font-family: Georgia, serif;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--theme-color);
  line-height: 1;
  opacity: 0.8;
}
.testimonial-section .testimonial-footer {
  background-color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 2rem 1.5rem;
  position: relative;
}
.testimonial-section .author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
  background: conic-gradient(from 90deg at 50% 50%, var(--theme-color) 0%, rgba(2, 170, 207, 0.2) 50%, var(--theme-color) 100%);
}
.testimonial-section .author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.testimonial-section .author-name {
  font-weight: 700;
  color: var(--theme-hover);
  margin-bottom: 0.25rem;
}
.testimonial-section .author-role {
  font-size: 0.9rem;
  color: var(--theme-color);
  margin: 0;
}

.cta {
  background: var(--theme-color);
}
.cta.common-space {
  padding: 20px 0px;
}
.cta .cta-cont {
  display: flex;
  gap: 20px;
}
.cta .cta-cont .icon {
  font-size: 75px;
  color: var(--theme-hover);
}
.cta .sub-heading {
  margin-bottom: 5px;
  font-size: 14.4px;
  color: var(--theme-hover);
  font-weight: 600;
}
.cta h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
}
.cta form {
  display: flex;
}
.cta form input {
  padding: 20px;
  width: 65%;
  border-radius: 50px;
}
.cta form .common-btn {
  margin-left: -50px;
  width: 40%;
}

.articles-section {
  padding: 5rem 0;
  background-color: #f0f2f5;
}

.article-tag {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--theme-hover);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #999;
}
.article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.article-meta img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.article-card-small {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(30, 40, 88, 0.04);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-card-small i {
  color: var(--theme-color);
}
.article-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 40, 88, 0.08);
}
.article-card-small:hover .article-title {
  color: var(--theme-color);
}

.article-card-large {
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  height: 500px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.article-card-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 40, 88, 0.8) 0%, rgba(30, 40, 88, 0) 60%);
  transition: background 0.4s ease;
}
.article-card-large .card-content {
  position: relative;
  z-index: 2;
}
.article-card-large .article-title {
  color: #fff;
  font-size: 1.4rem;
}
.article-card-large .article-meta {
  color: rgba(255, 255, 255, 0.8);
}
.article-card-large .article-meta i {
  color: var(--theme-color);
}
.article-card-large:hover {
  transform: scale(1.03);
}
.article-card-large:hover::before {
  background: linear-gradient(0deg, rgba(30, 40, 88, 0.9) 0%, rgba(30, 40, 88, 0.1) 60%);
}

.partners-section {
  padding: 4rem 0;
  background-color: #fff;
  border-top: 1px solid #f0f2f5;
}

.partners-grid {
  align-items: center;
  justify-content: center;
}
.partners-grid .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}
.partners-grid button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.partners-grid button.owl-prev span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.partners-grid button.owl-prev span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
.partners-grid button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.partners-grid button.owl-next span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.partners-grid button.owl-next span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}

.partner-item {
  display: flex;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  height: 150px;
  margin: 10px;
}
.partner-item img {
  width: 90px !important;
  height: auto;
  transition: all 0.3s ease;
}
.partner-item .partner-name {
  color: var(--theme-hover);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.1rem;
  transition: color 0.3s ease;
}
.partner-item .partner-desc {
  color: var(--theme-color);
  font-size: 0.8rem;
  margin: 0;
}
.partner-item:hover {
  transform: translateY(-5px);
}
.partner-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-item:hover .partner-name {
  color: var(--theme-color);
}

.doctors-section {
  padding: 5rem 0;
  background-color: aliceblue;
}

.section-description {
  color: #888;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.filter-nav .filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-hover);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.filter-nav .filter-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.filter-nav .filter-btn.active, .filter-nav .filter-btn:hover {
  color: var(--theme-color);
}
.filter-nav .filter-btn.active::after {
  transform: scaleX(1);
}

.doctor-grid .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}
.doctor-grid button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.doctor-grid button.owl-prev span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.doctor-grid button.owl-prev span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}
.doctor-grid button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.doctor-grid button.owl-next span {
  font-size: 40px;
  border: solid 3px var(--theme-hover);
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
  background: var(--theme-hover);
}
.doctor-grid button.owl-next span:hover {
  background-color: var(--theme-hover);
  border-color: transparent;
}

.doctor-card {
  background-color: #f8f9fa;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(33, 164, 252, 0.08) 0px 0px 0px 1px;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 40, 88, 0.08);
}

.doctor-img-wrapper {
  margin-bottom: 1.5rem;
}

.doctor-img {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #FFF;
  padding: 0.5rem;
}
.doctor-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  -o-object-position: top;
     object-position: top;
}

.doctor-name {
  color: var(--theme-hover);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tag-badge {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 5px;
}
.tag-badge.s-pd {
  background: var(--theme-hover);
}

.doctor-bio {
  font-size: 0.95rem;
  color: #888;
  margin: 1rem 0 1.5rem 0;
}

.doctor-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.doctor-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: grid;
  place-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.doctor-socials a i {
  font-size: 1rem;
  color: #888;
  transition: color 0.3s ease;
}
.doctor-socials a:hover {
  background-color: var(--theme-color);
}
.doctor-socials a:hover i {
  color: #fff;
}

footer.footer-section {
  background: aliceblue;
  position: relative;
  overflow: hidden;
}
footer.footer-section .its-overly {
  background: url("img/waves.png");
  opacity: 0.05;
  content: "";
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
footer .footer-content {
  position: relative;
  z-index: 2;
}
footer .footer-top {
  padding: 2.5rem 0;
  border-bottom: 1px dashed #000;
}
footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
footer .footer-logo img {
  max-height: 50px;
}
footer .footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-hover);
}
footer .newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
footer .newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 0.75rem 1.25rem;
  box-shadow: none;
}
footer .newsletter-form .btn-subscribe {
  border-radius: 0 50px 50px 0;
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
footer .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: lg-end;
  gap: 0.5rem;
}
footer .footer-socials span {
  color: var(--theme-hover);
  font-weight: 600;
  margin-right: 0.5rem;
}
footer .footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-socials a:hover {
  transform: scale(1.1);
  background-color: var(--theme-hover);
}
footer .footer-main {
  padding: 4rem 0;
}
footer .footer-title {
  color: var(--theme-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
footer .footer-text {
  color: #000000;
  line-height: 1.7;
}
footer .footer-links, footer .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-links li, footer .footer-contact-info li {
  margin-bottom: 0.8rem;
  font-weight: 500;
}
footer .footer-links a, footer .footer-contact-info a {
  color: var(--theme-hover);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}
footer .footer-links a i, footer .footer-contact-info a i {
  font-size: 0.8rem;
}
footer .footer-links a:hover, footer .footer-contact-info a:hover {
  color: var(--theme-color);
}
footer .footer-contact-info a {
  color: #000000;
  font-weight: 400;
}
footer .footer-contact-info a:hover {
  color: var(--theme-hover);
}
footer .footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
footer .footer-contact-info i {
  font-size: 1.25rem;
  color: var(--theme-color);
  margin-top: 0.25rem;
}
footer .footer-contact-info div {
  display: flex;
  flex-direction: column;
}
footer .footer-contact-info strong {
  color: var(--theme-hover);
  font-weight: 600;
}
footer .footer-contact-info span {
  color: #000000;
}
footer .footer-bottom {
  text-align: center;
  padding: 0.8rem 0;
  border-top: 1px dashed #000000;
}
footer .footer-bottom p {
  margin: 0;
  color: #000000;
}
footer .footer-bottom a {
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 600;
}
footer .footer-bottom a:hover {
  text-decoration: underline;
}

.beard-head {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.39) 0%, rgba(0, 0, 0, 0.33) 59%, rgba(0, 0, 0, 0.65) 100%), url(img/banner.jpg);
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 240px 0 70px;
  min-height: 250px;
}
.beard-head .bread {
  color: #fff;
}
.beard-head .bread a {
  text-decoration: none;
}
.beard-head .bread h1 {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
}
.beard-head .bread ul {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
}
.beard-head .bread ul li {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
  color: white;
  font-weight: 600;
  padding: 5px 5px;
}
.beard-head .bread ul li:first-child {
  color: white;
}
.beard-head .bread ul .breadcrumb::after {
  content: "\f054";
  font-family: "fontawesome";
  color: white;
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us Page Specifics
--------------------------------------------------------------*/
.about-legacy-section .legacy-img-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.about-legacy-section .legacy-img-wrapper .common-img {
  width: 100%;
  height: auto;
}
.about-legacy-section .legacy-content .subheading {
  color: var(--theme-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}
.about-legacy-section .legacy-content .common-heading {
  font-size: 42px;
}

.specialties-section .common-heading {
  font-size: 42px;
}
.specialties-section .service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}
.specialties-section .service-item .service-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.specialties-section .service-item:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  transform: translateY(-5px);
}

.why-choose-us-section {
  background: #f8f9fa;
}
.why-choose-us-section .why-choose-list {
  padding-left: 25px;
}
.why-choose-us-section .why-choose-list li {
  font-size: 17px;
  color: var(--theme-hover);
  font-weight: 400;
  margin-bottom: 10px;
}
.why-choose-us-section .accreditation-block .accreditation-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--theme-color);
}
.why-choose-us-section .accreditation-block .accreditation-item:not(:last-child) {
  margin-bottom: 25px;
}
.why-choose-us-section .accreditation-block .accreditation-item img {
  max-height: 80px;
  margin-bottom: 15px;
}
.why-choose-us-section .accreditation-block .accreditation-item i {
  font-size: 60px;
  color: var(--theme-color);
  margin-bottom: 15px;
}
.why-choose-us-section .accreditation-block .accreditation-item h3 {
  color: var(--theme-hover);
  font-weight: 600;
  font-size: 22px;
}
.why-choose-us-section .accreditation-block .accreditation-item.empaneled {
  border-left-color: var(--theme-hover);
}
.why-choose-us-section .accreditation-block .accreditation-item.empaneled i {
  color: var(--theme-hover);
}

/*--------------------------------------------------------------
# Director's Message Section
--------------------------------------------------------------*/
.director-message-section .director-profile .director-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid var(--theme-color);
  box-shadow: 0 0 20px rgba(2, 170, 207, 0.3);
}
.director-message-section .director-profile .director-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.director-message-section .director-profile .director-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.director-message-section .director-message-content .common-heading {
  font-size: 42px;
}
.director-message-section .director-message-content .common-heading::before {
  background-color: #fff;
}
.director-message-section .director-message-content p {
  font-size: 17px;
  line-height: 1.8;
}
.director-message-section .director-message-content p strong {
  color: var(--theme-color);
}

@media (max-width: 991.98px) {
  .director-profile {
    margin-bottom: 30px;
  }
  .director-message-content {
    text-align: center;
  }
  .director-message-content .common-heading.center-before::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .director-message-content .common-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.doct-p {
  background: white;
}
.doct-p .doctores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-section {
  background-color: #f8f9fa;
}
.gallery-section.common-space {
  padding-top: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: block;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.gallery-item h3 {
  position: absolute;
  z-index: 1;
  bottom: -10px;
  color: white;
  padding: 12px 0px 15px 0px;
  font-size: 20px;
  background: var(--theme-hover);
  width: 100%;
  text-align: center;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 40, 88, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-overlay i {
  color: #fff;
  font-size: 40px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .gallery-item.wide, .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/*--------------------------------------------------------------
# Patient Review Section (Static Grid)
--------------------------------------------------------------*/
.patient-review-section .review-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 40, 88, 0.08);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.patient-review-section .review-card::before {
  content: "“";
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 100px;
  line-height: 1;
  color: var(--theme-color);
  opacity: 0.08;
  z-index: 1;
}
.patient-review-section .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 40, 88, 0.12);
}
.patient-review-section .review-body {
  position: relative;
  z-index: 2;
}
.patient-review-section .review-body p {
  font-style: italic;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}
.patient-review-section .review-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #e0e0e0;
  position: relative;
  z-index: 2;
}
.patient-review-section .author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.patient-review-section .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--theme-color);
}
.patient-review-section .author-details .author-name {
  color: var(--theme-hover);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}
.patient-review-section .star-rating i {
  color: #FFC107;
  font-size: 14px;
  margin-right: 2px;
}

/*--------------------------------------------------------------
# Contact Page Full Styles
--------------------------------------------------------------*/
.contact-page-section {
  background-color: #f8f9fa;
}

.contact-widget {
  background-color: #eaf8ff;
  background-image: url("path/to/your/wave-pattern.png");
  background-repeat: repeat;
  padding: 40px 30px;
  border-radius: 10px;
  height: 100%;
}

.widget-title {
  color: var(--theme-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact-list li:not(:last-child) {
  margin-bottom: 25px;
}
.contact-list li i {
  color: var(--theme-color);
  font-size: 20px;
  margin-top: 5px;
}
.contact-list li .text-content {
  display: flex;
  flex-direction: column;
}
.contact-list li .text-content strong {
  font-family: var(--theme-font);
  color: var(--theme-hover);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 2px;
}
.contact-list li .text-content span {
  font-family: var(--theme-font);
  color: #212121;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}
.contact-form-wrapper .common-heading {
  font-size: 42px;
}
.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.contact-form-wrapper .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  height: auto;
  transition: border-color 0.3s ease;
}
.contact-form-wrapper .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: none;
}
.contact-form-wrapper textarea.form-control {
  resize: vertical;
}

.blog-listing-section {
  background-color: #f8f9fa;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 40, 88, 0.1);
}

.card-image {
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  transition: transform 0.4s ease;
}
.blog-card:hover .card-image img {
  transform: scale(1.05);
}

.card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--theme-color);
  padding: 5px 12px;
  border-radius: 50px;
}
.card-category a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.card-body {
  padding: 25px;
  flex-grow: 1;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.card-title a {
  color: var(--theme-hover);
  transition: color 0.3s ease;
}
.card-title a:hover {
  color: var(--theme-color);
}

.card-excerpt {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.card-footer {
  padding: 0 25px 25px 25px;
}
.card-footer .common-btn.btn-2 {
  padding: 10px 20px;
  font-size: 16px;
}
.card-footer .common-btn.btn-2 span {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Sidebar Styling
--------------------------------------------------------------*/
.sidebar-widget {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 22px;
  color: var(--theme-hover);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color);
}

.search-form-widget {
  position: relative;
}
.search-form-widget .form-control {
  padding-right: 50px;
  border-radius: 5px;
}
.search-form-widget .btn-search {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: transparent;
  border: none;
  color: var(--theme-color);
  font-size: 18px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li:not(:last-child) {
  border-bottom: 1px dashed #e0e0e0;
}
.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--theme-hover);
  font-weight: 500;
  transition: color 0.3s ease;
}
.category-list li a:hover {
  color: var(--theme-color);
}
.category-list li a span {
  font-size: 14px;
  color: #888;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts-list li:not(:last-child) {
  margin-bottom: 20px;
}
.recent-posts-list li a {
  display: flex;
  gap: 15px;
  align-items: center;
}
.recent-posts-list li a img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.recent-posts-list li a h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--theme-hover);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.recent-posts-list li a span {
  font-size: 13px;
  color: #999;
}
.recent-posts-list li a:hover h5 {
  color: var(--theme-color);
}

/*--------------------------------------------------------------
# Our Specialities Page (With Images Version)
--------------------------------------------------------------*/
.our-specialities-section-with-img {
  background-color: #f8f9fa;
}

.speciality-card-img {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.speciality-card-img .speciality-image {
  overflow: hidden;
}
.speciality-card-img .speciality-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.speciality-card-img .speciality-content {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.speciality-card-img .speciality-content .speciality-name {
  color: var(--theme-hover);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}
.speciality-card-img .speciality-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease-in-out;
}
.speciality-card-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 40, 88, 0.1);
}
.speciality-card-img:hover .speciality-image img {
  transform: scale(1.05);
}
.speciality-card-img:hover .speciality-content .speciality-name {
  color: var(--theme-color);
}
.speciality-card-img:hover .speciality-content::after {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Speciality Detail Page
--------------------------------------------------------------*/
.speciality-detail-section {
  background-color: #fff;
}

.speciality-main-content .speciality-detail-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.speciality-main-content .speciality-detail-img img {
  width: 100%;
  display: block;
}
.speciality-main-content .common-heading {
  font-size: 36px;
}
.speciality-main-content .section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-hover);
  margin-top: 40px;
  margin-bottom: 20px;
}

.style-list-2 {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.style-list-2 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #212121;
}
.style-list-2 li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .style-list-2 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.specialist-card-small {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}
.specialist-card-small:not(:last-child) {
  margin-bottom: 15px;
}
.specialist-card-small img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--theme-color);
}
.specialist-card-small .info {
  flex-grow: 1;
}
.specialist-card-small .info h5 {
  color: var(--theme-hover);
  font-weight: 600;
  margin-bottom: 5px;
}
.specialist-card-small .info span {
  color: #555;
  font-size: 14px;
}
.specialist-card-small .common-btn {
  padding: 10px 15px;
  font-size: 14px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Speciality Sidebar Styling
--------------------------------------------------------------*/
.sidebar-speciality {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
}

.widget-title {
  font-size: 22px;
  color: var(--theme-hover);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color);
}

.appointment-widget-form .form-group {
  margin-bottom: 15px;
}
.appointment-widget-form .form-control {
  border-radius: 5px;
  background-color: #fff;
}
.appointment-widget-form .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: none;
}
.appointment-widget-form .common-btn {
  width: 100%;
  justify-content: center;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links-list li:not(:last-child) {
  border-bottom: 1px dashed #e0e0e0;
}
.quick-links-list li a {
  display: block;
  padding: 12px 5px;
  color: var(--theme-hover);
  font-weight: 500;
  transition: color 0.3s ease;
}
.quick-links-list li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--theme-color);
}
.quick-links-list li a:hover {
  color: var(--theme-color);
}

/*--------------------------------------------------------------
# Appointment Page
--------------------------------------------------------------*/
.appointment-page-section {
  background-color: #fff;
}

.appointment-form-wrapper {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}
.appointment-form-wrapper .common-heading {
  font-size: 36px;
}
.appointment-form-wrapper .form-group {
  margin-bottom: 20px;
}
.appointment-form-wrapper .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  height: auto;
}
.appointment-form-wrapper .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: none;
}
.appointment-form-wrapper .form-label-custom {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-hover);
}

.appointment-sidebar {
  position: sticky;
  top: 120px;
}
.appointment-sidebar .sidebar-widget {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
}
.appointment-sidebar .widget-title {
  font-size: 22px;
  color: var(--theme-hover);
  font-weight: 600;
  margin-bottom: 20px;
}
.appointment-sidebar .style-list-2 li {
  margin-bottom: 12px;
}
.appointment-sidebar .working-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.appointment-sidebar .working-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #212121;
  padding: 10px 0;
}
.appointment-sidebar .working-hours-list li:not(:last-child) {
  border-bottom: 1px dashed #d0d0d0;
}
.appointment-sidebar .working-hours-list li span:first-child {
  font-weight: 500;
}
.appointment-sidebar .emergency-box {
  background-color: var(--theme-hover);
  color: #fff;
  text-align: center;
}
.appointment-sidebar .emergency-box .widget-title {
  color: #fff;
}
.appointment-sidebar .emergency-box p {
  color: rgba(255, 255, 255, 0.9);
}
.appointment-sidebar .emergency-box .emergency-number {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.appointment-sidebar .emergency-box .emergency-number i {
  margin-right: 10px;
}
.appointment-sidebar .emergency-box .emergency-number:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Director's Full Message Page (Single Column)
--------------------------------------------------------------*/
.director-single-column-section {
  background-color: #fff;
}

.director-profile-header {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid var(--theme-color);
}
.director-profile-header .profile-pic {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  -o-object-position: top;
     object-position: top;
}
.director-profile-header .profile-info .name {
  font-size: 28px;
  color: var(--theme-hover);
  font-weight: 700;
  margin-bottom: 5px;
}
.director-profile-header .profile-info .title {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .director-profile-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .director-profile-header .profile-pic {
    width: 100px;
    height: 100px;
  }
  .director-profile-header .profile-info .name {
    font-size: 24px;
  }
}

.director-full-message {
  padding-top: 20px;
}
.director-full-message .common-heading {
  font-size: 36px;
}
.director-full-message .section-subtitle {
  font-size: 24px;
  color: var(--theme-hover);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}
.director-full-message p {
  font-size: 17px;
  line-height: 1.9;
}
.director-full-message .director-quote {
  background-color: aliceblue;
  border-left: 5px solid var(--theme-color);
  padding: 25px 30px;
  margin: 30px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--theme-hover);
}
.director-full-message .style-list-2 {
  -moz-column-count: 1;
       column-count: 1;
}
.director-full-message .style-list-2 li {
  font-size: 17px;
  margin-bottom: 12px;
  padding-left: 28px;
}
.director-full-message .director-signature {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #e0e0e0;
}
.director-full-message .director-signature span {
  font-family: var(--theme-font);
  font-style: italic;
  display: block;
  font-size: 18px;
  color: #555;
}
.director-full-message .director-signature strong {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--theme-hover);
  display: block;
}

.dropdown-item.active, .dropdown-item:active {
  color: White !important;
  text-decoration: none;
  background-color: var(--theme-color);
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
}

.value-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.value-card h2 {
  color: #005a87; /* A professional blue color */
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  margin-top: 10px;
}

.value-card p, .value-card ul {
  color: #333;
  line-height: 1.6;
}

.value-card ul {
  padding-left: 1.2rem;
}

.value-card li {
  margin-bottom: 0.5rem;
}

/* Specific styling for Hindi text if needed */
/* You can specify a different font for Hindi if the default is not optimal */
/* font-family: 'Noto Sans Devanagari', sans-serif; */
.newsletter input {
  padding: 10px 15px;
}

.newsletter .new-form {
  display: flex;
}

.tnp.tnp-subscription form {
  display: flex;
  border-radius: 0px;
  justify-content: end;
}

.tnp.tnp-subscription input {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: white !important;
}

.tnp.tnp-subscription form .tnp-field.tnp-field-button input {
  background-color: var(--theme-hover) !important;
  border-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.tnp.tnp-subscription .tnp-field label {
  display: none;
}

.govt-panel-page-section .panel-logo {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}
.govt-panel-page-section .panel-logo img {
  margin-bottom: 15px;
  max-height: 130px;
  height: auto;
  padding: 5px;
}
.govt-panel-page-section .panel-logo .logo-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tnp.tnp-subscription form {
    justify-content: end;
  }
}/*# sourceMappingURL=style.css.map */