 :root {
      --primary-color:#90132B;
      --primary-dark: #1F201F;
      --primary-light: #90132B;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .topbar {
      background: var(--primary-color);
      color: #fff;
      font-size: 0.9rem;
    }

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

    .topbar i {
      margin-right: 0.35rem;
    }
    img.header-logo{width: auto;height: 100px;}

    .navbar-brand h1 {
      color: var(--primary-light);
      font-size: 1.4rem;
      margin: 0;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .navbar-brand span.subtitle {
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      color: #6c757d;
    }

    .btn-appointment {
      background: var(--primary-light);
      border-color: var(--primary-light);
      color: #fff;
      border-radius: 5px;
      padding-inline: 1.5rem;
      font-weight: 600;
    }

    .btn-appointment:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      padding-inline: 0.9rem;
      font-size: 18px;
    }

    .navbar {
      box-shadow: 0 1px 12px rgba(15, 23, 42, 0.08);
      background-color: #ffffff;
    }

    /* Show default Bootstrap hamburger icon */
    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    @media (max-width: 575.98px) {
      .topbar .contact-item {
        font-size: 0.8rem;
      }
      .navbar-brand h1 {
        font-size: 1.1rem;
      }
      .navbar-brand span.subtitle {
        font-size: 0.8rem;
      }
    }


    .hero-slider .owl-item,
    .hero-slide {
      height: 80vh;
      min-height: 480px;
    }

    .hero-slide {
      position: relative;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.7);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3); /* teal overlay */
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }

    .hero-heading {
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero-subheading {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .hero-text {
      font-size: 1rem;
      max-width: 40rem;
      margin-bottom: 1.8rem;
    }

    .hero-btn {
      padding: 0.85rem 2.4rem;
      border-radius: 999px;
      font-weight: 600;
      border: none;
      background: #ffffff;
      color: #90132B;
    }

    .hero-btn:hover {
      background: #e9f3f2;
      color: #03413d;
    }

    /* Owl custom nav arrows styled like screenshot */
    .hero-slider .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #ffffff;
      background: rgba(0, 0, 0, 0.15);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .hero-slider .owl-nav button.owl-prev {
      left: 20px;
    }

    .hero-slider .owl-nav button.owl-next {
      right: 20px;
    }

    .hero-slider .owl-nav button:hover {
      background: rgba(0, 0, 0, 0.35);
      transform: translateY(-50%) scale(1.05);
    }

    .hero-slider .owl-nav span {
      font-size: 2rem;
      line-height: 1;
    }

    .hero-slider .owl-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-slider .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      margin: 3px;
      background: rgba(255, 255, 255, 0.6);
    }

    .hero-slider .owl-dots .owl-dot.active span {
      background: #ffffff;
    }

    @media (max-width: 767.98px) {
      .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      .hero-slide {
        padding-block: 3rem;
        height: auto;
        min-height: 420px;
      }
    }


   /* Card hover effects */
  .specialization-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  .specialization-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  .specialization-card img {
    transition: transform 0.35s ease;
    height: 250px;
    object-fit: cover;
  }

  .specialization-card:hover img {
    transform: scale(1.04);
  }

  .specialization-card .btn {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .specialization-card:hover .btn {
    background: #90132B !important;
    transform: translateY(-1px);
  }


  .blog-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }
  .blog-card img {
    transition: transform 0.35s ease;
  }
  .blog-card:hover img {
    transform: scale(1.04);
  }

  .review-card {
    border-radius: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  }

  #faqAccordion .accordion-button::after {
    background-image: none !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    color: #111827;
    transform: none;
  }
  #faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
  }
  #faqAccordion .accordion-button {
    border-radius: 0.8rem !important;
  }
  #faqAccordion .accordion-item {
    border-radius: 0.8rem !important;
  }
  
  
  
/*Blog Page*/  

.sidebar-sticky {
            position: sticky;
            top: 24px;
        }
        .sidebar-block {
            background: #fff;
            margin-bottom: 28px;
            border-radius: 10px;
            box-shadow: 0 2px 12px #0001;
            padding: 24px 18px 20px 18px;
        }
        .sidebar-block h5 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #444;
            letter-spacing: 1.5px;
        }
        .category-list, .tag-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .category-list li, .tag-list li {
            padding: 5px 0;
            color: #555;
            font-size: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 4px;
        }
        .recent-posts-list {
            list-style: none;
            padding-left: 0;
        }
        .recent-posts-list li {
            display: flex;
            align-items: center;
            margin-bottom: 13px;
        }
        .recent-posts-list img {
            width: 38px;
            height: 38px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 13px;
        }
        .recent-posts-info {
            display: flex;
            flex-direction: column;
            font-size: 13px;
            line-height: 1.2;
        }
        .sidebar-block .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }
        .tag-list li {
            padding: 4px 11px;
            background: #f3efe5;
            color: #534532;
            font-size: 13px;
            border-radius: 12px;
            border: none;
            margin-bottom: 2px;
        }
        /* Blog Posts */
        .blog-post {
            display: flex;
            margin-bottom: 38px;
            background: #fff;
            border-radius: 13px;
            box-shadow: 0 4px 22px #ececed;
            overflow: hidden;
        }
        .blog-post-img {
            width: 220px;
            min-width: 220px;
            height: 165px;
            object-fit: cover;
            border-radius: 12px 0 0 12px;
        }
        .blog-post-body {
            padding: 22px 26px 18px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .blog-title {
            font-size: 19px;
            font-weight: bold;
            color: #2d2d2d;
            margin-bottom: 12px;
            line-height: 1.1;
        }
        .blog-meta {
            font-size: 12px;
            color: #888;
            margin-bottom: 8px;
        }
        .blog-desc {
            font-size: 14px;
            color: #424242;
            margin-bottom: 10px;
        }
        .read-more {
            font-weight: 500;
            font-size: 13px;
            color: #E84329;
            text-decoration: none;
            margin-top: 10px;
        }
        .read-more:hover {
            color: #c62d15;
        }
        .sidebar-block a{ color: #424242; }
        .sidebar-block a:hover{ color: #E84329; }
        @media (max-width: 991px){
            .blog-post-img { width: 120px; min-width: 120px; height: 90px; }
            .blog-post-body { padding: 13px 14px 10px 14px; }
            .blog-title { font-size: 16px; }
        }
        @media (max-width: 768px){
            .sidebar-sticky { position: static; }
            .container { max-width: 100%; }
            .blog-post { flex-direction: column; }
            .blog-post-img { width: 100%; min-width: 100%; height: 170px; border-radius: 12px 12px 0 0; }
            .blog-post-body { padding: 16px 10px 10px 10px; }
        }


/*Blog Details Page*/

.blog-card {
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 2px 8px rgba(30,34,90,0.12), 0 0.5px 1.5px rgba(30,34,90,0.12);
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
            transition: box-shadow 0.3s;
        }
        /*.blog-card:hover {
            box-shadow: 0 6px 19px rgba(30,34,90,0.18), 0 1.5px 2.8px rgba(30,34,90,0.13);
        }*/
        .blog-image {
            width: 100%;
            max-height: 340px;
            border-radius: 0.7rem;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }
        .blog-meta i {
            color: #c62d15;
            margin-right: 4px;
        }
        .blog-title {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        .blog-meta {
            font-size: 1rem;
            color: #6e7b8a;
            margin-bottom: 1.2rem;
        }
        .blog-content {
            color: #20263a;
            line-height: 1.8;
            font-size: 1.18rem;
        }
        .blog-tags .badge {
            margin-right: 0.5rem;
            background: #fbeee5;
            color: #c62d15;
            font-size: 1rem;
        }
        .sidebar {
            background: #fff;
            border-radius: 1rem;
            padding: 1.8rem 2rem;
            box-shadow: 0 2px 8px rgba(30,34,90,0.1);
        }
        .sidebar h5 {
            font-weight: 600;
            margin-bottom: 1rem;
            border-bottom: 2px solid #c62d15;
            padding-bottom: 0.3rem;
            color: #c62d15;
        }
        .sidebar .author-info {
            text-align: center;
            margin-bottom: 2rem;
        }
        .author-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.8rem;
        }
        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #20263a;
        }
        .author-role {
            font-size: 0.9rem;
            color: #6e7b8a;
        }
        .recent-posts li, .categories li {
            margin-bottom: 0.7rem;
            list-style: none;
        }
        .recent-posts a, .categories a {
            text-decoration: none;
            color: #444;
            font-weight: 500;
        }
        .recent-posts a:hover, .categories a:hover {
            text-decoration: underline;
            color: #c62d15;
        }  
               
.footer-divider {
  margin: 0 0 1.5rem;
  border: 0;                 /* remove default */
  height: 1px;               /* visible thickness */
  width: 100%;
  background-color: #fff; /* light teal line */
}
footer .footer-divider {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}



element.style {
    width: 390.4px;
}
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
 
/* @media (min-width: 767px){
.hero-slider .owl-item{
    height:0
	}
}	 */
	
img.img-fluid.footer-logo{
    width:150px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}