/********** Template CSS **********/
:root {
  --primary: #13c5dd;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}
.topbar-text a {
  color: white;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Raleway", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}
.navbar-logo {
  height: 70px;
  width: auto;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}
@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.hero-img {
  height: 500px;
  object-fit: cover;
}
.hero-img {
  height: 500px;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-img {
    height: 220px;
    object-fit: cover;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-img {
    height: 180px;
  }
}

.about-img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
}

.dropcap {
  float: left;
  font-size: 60px;
  font-weight: bold;
  color: #17a2b8;
  line-height: 1;
  padding-right: 10px;
}

.about-list p {
  margin-bottom: 10px;
}

.about-list i {
  color: #17a2b8;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .about-img {
    width: 100%;
    height: auto;
  }

  .dropcap {
    font-size: 40px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-list {
    margin-top: 15px;
  }
}

.feature-box {
  padding: 70px 50px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.feature-content h5 {
  font-weight: 700;
  margin-top: 18px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.8;
}

/* colors */
.bg-green {
  background: #88f7b1;
}
.bg-lightgreen {
  background: #f1ffb0;
}
.bg-blue {
  background: #bef4ff;
}
.bg-purple {
  background: #eeb3e8;
}

@media (max-width: 768px) {
  .feature-box {
    padding: 40px 20px;
    min-height: auto;
  }

  .feature-img {
    width: 70px;
    height: 70px;
  }

  .feature-content h5 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }
}
.why-section {
  background: #f2f2f2;
}

.why-content {
  padding: 80px 60px;
  padding-left: 150px;
  padding-right: 150px;
  background: #ffffff;
}

.why-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #17a2b8;
  margin: 15px 0 25px;
}

.why-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-img {
  width: 80%;
  height: 70%;
  object-fit: cover;
  min-height: 500px;
}

/* ✅ Laptop */
@media (max-width: 1200px) {
  .why-content {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .why-content {
    padding: 50px 40px;
  }

  .why-img {
    width: 100%;
    min-height: 400px;
  }
}

/* ✅ Mobile */
@media (max-width: 768px) {
  .why-content {
    padding: 30px 20px;
  }

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

  .why-img {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .title-line {
    margin: 10px 0 15px;
  }
}
.services-section {
  background: #000;
}

.service-item {
  margin-bottom: 40px;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: #1aa7d8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: relative;
  transition: 0.3s ease;
}

/* outer ring */
.service-icon::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid #1aa7d8;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s ease;
}

/* hover effect */
.service-item:hover .service-icon::after {
  opacity: 1;
}

.service-item:hover .service-icon {
  background: #19a7d8;
}

.service-item h5 {
  margin-top: 15px;
  color: #fff;
  font-weight: 500;
}

.middle-img img {
  max-width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .service-item {
    text-align: center !important;
  }

  .middle-img {
    margin: 30px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 26px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .service-item {
    margin-bottom: 25px;
    text-align: center !important;
  }

  .middle-img {
    order: -1; /* show image on top */
    margin-bottom: 30px;
  }

  .middle-img img {
    width: 70%;
  }
}

.testimonial-section {
  background: #4ec8f4;
  padding: 60px 0;
  padding-bottom: 90px;
  padding-left: 50px;
}

.testimonial-box {
  background: #ffffff;
  padding: 40px 40px 40px 100px;
  position: relative;
  overflow: visible;
  margin-bottom: 30px;
  width: 98%;
}

.testimonial-img {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.testimonial-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}

.carousel-inner {
  overflow: visible;
}

.testimonial-box p {
  color: #333;
  line-height: 1.8;
}

.testimonial-box h6 {
  text-align: right;
  font-weight: 600;
  margin-top: 15px;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ========================= */
/* Tablet View */
/* ========================= */
@media (max-width: 991px) {
  .testimonial-section {
    padding-left: 20px;
  }

  .testimonial-box {
    padding: 30px 25px 30px 80px;
    width: 100%;
  }

  .testimonial-img {
    left: -25px;
  }
}

/* ========================= */
/* Mobile View */
/* ========================= */
@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 15px;
  }

  .testimonial-box {
    padding: 60px 20px 20px 20px;
    text-align: center;
  }

  .testimonial-img {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
  }

  .testimonial-img img {
    width: 65px;
    height: 65px;
  }

  .testimonial-box h6 {
    text-align: center;
  }

  .carousel-indicators {
    bottom: -25px;
  }
}

.cta-section {
  background: #1aa3cf;
  padding: 20px 20px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.cta-image img {
  width: 300px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-content p {
  color: #eaf7fb;
  font-size: 20px;
}

.btn-contact {
  border: 2px solid #fff;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #fff;
  color: #00aeef;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-image img {
    width: 200px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
.footer {
  background: #2b3e50;
  color: #cfd8dc;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 0 20px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #00bcd4;
  display: block;
  margin-top: 8px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-col a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #3c4f61;
  margin-top: 30px;
  padding: 15px 20px;

  align-items: center;
  font-size: 14px;
}

.footer-bottom span {
  color: #00bcd4;
}

.social-icons a {
  background: #3c4f61;
  color: #fff;
  padding: 8px 10px;
  margin-left: 5px;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
}

.social-icons a:hover {
  background: #00bcd4;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-item i {
  color: #00bcd4;
  font-size: 16px;
  margin-top: 4px;
  min-width: 18px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* /////////////////////////ABOUT PAGE START//////////////////////////////////////////////////// */

.page-header {
  background: linear-gradient(90deg, #d66a86 0%, #a45ca6 100%);
  padding: 40px 20px;
}

.page-header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-weight: 500;
}

.breadcrumb {
  color: #fff;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}
.doctor-section {
  padding: 60px 0;
  background: #f9f9f9;
}

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

.doctor-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.doctor-content {
  flex: 2;
}

.doctor-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #00bcd4;
  margin-bottom: 20px;
}

.doctor-content h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.doctor-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
}

.doctor-image {
  flex: 1;
  text-align: center;
}

.doctor-image img {
  width: 100%;
  max-width: 320px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .doctor-row {
    flex-direction: column;
  }

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

  .doctor-image {
    margin-top: 20px;
  }
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.exp-list {
  padding-left: 18px;
}

.exp-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
}

/* //////////////////////// Prevention of Aspiration syndrome.////////////// */
.pdf-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.pdf-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
}

.pdf-wrapper {
  position: relative;
  width: 100%;
  height: 750px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pdf-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pdf-wrapper {
    height: 500px;
  }
  .pdf-title {
    font-size: 22px;
  }
}

/* ////////////////////////////////Diabetic Foot/////////////////// */

.diabetic-foot {
  background: #f5f5f5;
}

.main-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.title-line {
  width: 70px;
  height: 3px;
  background: #1e9bd7;
  margin-top: 8px;
  margin-bottom: 15px;
}

.section-sub {
  font-weight: 700;
  color: #555;
  margin-top: 20px;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}

.tick-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e9bd7;
  font-weight: bold;
}

.slider-box {
  border: 1px solid #ddd;
  padding: 8px;
  background: #fff;
  overflow: hidden; /* IMPORTANT FIX */
}

/* Fix carousel height */
#footSlider .carousel-inner {
  height: 420px;
}

/* Fix each slide */
#footSlider .carousel-item {
  height: 420px;
}

/* Fix image inside */
#footSlider .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* dots */
.carousel-indicators.custom-dots {
  bottom: -35px;
}

.carousel-indicators.custom-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

.carousel-indicators.custom-dots .active {
  background-color: #1e9bd7;
}

/* sticky */
@media (min-width: 992px) {
  #footSlider {
    position: sticky;
    top: 100px;
  }
}

/* mobile */
@media (max-width: 991px) {
  #footSlider .carousel-inner,
  #footSlider .carousel-item {
    height: auto;
  }
}

/* spacing */
.tick-list li {
  margin-bottom: 8px;
}

/* /////////////////////////SELF CARE OF THE DIABETIC FOOT//////////////////// */

.guide-top {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-heading {
  font-weight: 700;
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

.guide-img {
  width: 150px;
  border-radius: 15px;
  background: #fff;
  padding: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .guide-heading {
    font-size: 16px;
  }

  .guide-img {
    width: 120px;
  }
}

.video-section {
  background: #f5f5f5;
}

.video-card {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
}

.video-title {
  margin-top: 10px;
  font-weight: 600;
  color: #666;
  text-align: center;
}


.section-title {
  font-size: 32px;
  font-weight: 600;
}

.title-border {
  width: 70px;
  height: 3px;
  background: #1e9bd7;
  margin-top: 5px;
  margin-bottom: 15px;
}

.info-box {
  padding-right: 20px;
  font-size: 15px;
}

.border-left {
  border-left: 3px solid #1e9bd7;
  padding-left: 20px;
}

.contact-form .form-control {
  border-radius: 0;
  padding: 10px;
}

.contact-form button {
  background: #1e9bd7;
  border: none;
  padding: 10px 25px;
}
.map-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.map-title {
  text-align: center;
  margin-bottom: 25px;
}

.map-title h2 {
  font-size: 28px;
  font-weight: 700;
}

.map-title p {
  color: #777;
}

.map-box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .map-box iframe {
    height: 300px;
  }
}
