/*
Theme Name: SWI Hospital Management Theme
Theme URI: https://swihospitalsoftware.in
Author: SWI Software Solutions
Author URI: https://swisoftwaresolutions.com
Description: Custom WordPress theme for Hospital Management Software
Version: 1.0
Text Domain: swi-hms
*/


:root {
  --green: #22d571;
  --green-dark: #0fa958;
  --bg-light: #edf6fb;
}

a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 75px;
}

/* ================= NAVBAR ================= */
.navbar-brand {
  font-size: 22px;
}

.nav-link {
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero-section {
  background: var(--bg-light);
  padding: 90px 0;
  border-radius: 12px;
}

.hero-badge {
  background: rgba(34,213,113,0.15);
  color: var(--green-dark);
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 18px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 15px;
}

.hero-title span {
  background: linear-gradient(135deg, #22d571, #00bc51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*.hero-text {
  margin: 18px 0;
  color: #555;
}*/

.hero-text {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}


.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #22d571, #00bc51);
  color: #fff;
  border-radius: 6px;
  padding: 10px 22px;
  border: none;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34,213,113,.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  margin-top: 30px;
}

.hero-stats h4 {
  color: var(--green);
  font-weight: 700;
}

.hero-stats p {
  font-size: 14px;
  color: #777;
}

.hero-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  transition: 0.4s;
}

/*.hero-image {
  border: 1px solid rgba(0,0,0,.05);
  background: #fff;
}*/

.hero-image:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .hero-title {
    font-size: 30px;
  }
  .hero-stats {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ================= SECTIONS ================= */
.section-badge {
  display: inline-block;
  background: rgba(34,213,113,0.15);
  color: var(--green-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-title span {
  background: linear-gradient(135deg, #22d571, #00bc51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #666;
  max-width: 650px;
  margin: 12px auto 0;
}

/* ================= FEATURES ================= */
.features-section {
  padding: 90px 0;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  height: 100%;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34,213,113,.25);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,213,113,.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::after {
  opacity: 1;
}

/* ================= ABOUT ================= */
.about-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.about-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-list i {
  color: var(--green);
  margin-right: 8px;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .section-title {
    font-size: 26px;
  }
}

/* ================= PRICING ================= */
.pricing-section {
  padding: 90px 0;
  background: #fff;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-weight: 600;
}

.pricing-toggle span.active {
  color: var(--green);
}

.switch {
  position: relative;
  width: 52px;
  height: 26px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
}

.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}

.switch input:checked + .slider {
  background: var(--green);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.price-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .4s;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 2px solid var(--green);
}

.price-card .popular {
  background: var(--green);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-card ul li {
  margin-bottom: 10px;
}

/* ================= FAQ ================= */
.faq-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.faq-search {
  max-width: 500px;
  margin: auto;
  border-radius: 50px;
  padding: 12px 20px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */
.footer-section {
  background: #0b1f17;
  color: #fff;
  padding: 70px 0 30px;
}

.footer-logo {
  font-weight: 700;
}

.footer-text {
  color: #bbb;
  margin-top: 10px;
}

.footer-section h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: var(--green);
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: .3s;
}

.social-icons a:hover {
  background: var(--green);
}

.footer-section hr {
  border-color: rgba(255,255,255,.1);
  margin: 30px 0;
}

.copyright {
  font-size: 14px;
  color: #aaa;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transition: .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s ease, transform .8s ease;
  padding: 90px 0;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.hero-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: var(--green);
}

/* ================= SERVICES TABS ================= */
.services-section {
  padding: 90px 0;
  background: #fff;
}

.services-tabs .nav-link {
  font-weight: 600;
  color: #444;
  border: none;
  border-bottom: 3px solid transparent;
  margin: 0 5px;
}

.services-tabs .nav-link.active {
  color: #198754;
  border-bottom: 3px solid #198754;
  background: none;
}

.services-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.services-content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.services-content ul li {
  margin-bottom: 8px;
}

.service-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* ================= TRUSTED BY ================= */
.trusted-section {
  padding: 70px 0 40px;
  background: #f9fdfb;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-track img {
    height: 45px;
    margin: 0 20px;
  }
}

/* ================= VIDEO SECTION ================= */
.video-section {
  padding: 90px 0;
  background: #ffffff;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  height: 100%;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card h6 {
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* Mobile */
@media(max-width:768px) {
  .video-section {
    padding: 60px 0;
  }
}

.hms-features {
  padding: 90px 0;
  background: #f9fdfb;
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  height: 100%;
  transition: .3s;
}

.feature-box i {
  font-size: 36px;
  color: #198754;
  margin-bottom: 15px;
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-box:hover {
  transform: translateY(-8px);
}


/* ================= HEADER ================= */
.top-bar {
  background: #198754;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar i {
  margin-right: 6px;
}

.site-logo {
  height: 42px;
}

/* Adjust navbar spacing due to top bar */
body {
  padding-top: 95px;
}

/* Mobile */
@media (max-width: 991px) {
  .site-logo {
    height: 36px;
  }
}


/* ================= HERO PRICING ================= */
.hero-pricing {
  padding: 90px 0;
  background: #f9fdfb;
}

.pricing-box {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  height: 100%;
  position: relative;
  transition: .3s;
}

.pricing-box:hover {
  transform: translateY(-10px);
}

.pricing-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #198754;
}

.pricing-box h3 span {
  font-size: 16px;
  color: #666;
}

.price-note {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-box ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

.pricing-box.featured {
  border: 2px solid #198754;
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #198754;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 50px;
}


/* ================= PRODUCT SECTION ================= */
.product-section {
  padding: 100px 0;
  background: #ffffff;
}

.product-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  height: 100%;
  position: relative;
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card h3 {
  font-weight: 700;
  margin-bottom: 12px;
}

.product-desc {
  color: #555;
  margin-bottom: 18px;
}

.product-features {
  padding-left: 18px;
  margin-bottom: 25px;
}

.product-features li {
  margin-bottom: 8px;
  font-weight: 500;
}

.product-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card.featured {
  border: 2px solid #198754;
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #198754;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
}



/* ================= FIXED HEADER STACK ================= */
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Top contact bar */
.top-bar {
  background: #198754;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

/* Logo size */
.site-logo {
  height: 42px;
}

/* Push page content below header */
body {
  padding-top: 105px; /* adjust if needed */
}

/* Mobile */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  body {
    padding-top: 75px;
  }

  .site-logo {
    height: 36px;
  }
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}


/* Header shrink */
.header-fixed {
  transition: all 0.3s ease;
}

.header-fixed.shrink .top-bar {
  display: none;
}

.header-fixed.shrink .site-logo {
  height: 34px;
}

.header-fixed.shrink .navbar {
  padding-top: 6px;
  padding-bottom: 6px;
}


/* ================= MEGA MENU ================= */
.mega-dropdown .dropdown-menu {
  width: 700px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.mega-menu h6 {
  font-weight: 700;
  margin-bottom: 10px;
}

.mega-menu .dropdown-item {
  padding: 6px 0;
  font-weight: 500;
}

/* Mobile fallback */
@media (max-width: 991px) {
  .mega-dropdown .dropdown-menu {
    width: 100%;
    transform: none;
    left: 0;
  }
}


/* ================= TESTIMONIAL SLIDER ================= */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.testimonial-card {
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ================= PRICING SLIDER ================= */
.pricing-slider-wrapper {
  overflow: hidden;
}

.pricing-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
}

.pricing-slider::-webkit-scrollbar {
  display: none;
}

.pricing-box {
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.pricing-box.featured {
  border: 2px solid #198754;
}

@media (min-width: 992px) {
  .pricing-box {
    min-width: 360px;
  }
}


/* ================= SLIDER ARROWS ================= */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  cursor: pointer;
  z-index: 10;
}

.left-arrow { left: -20px; }
.right-arrow { right: -20px; }

.slider-arrow i {
  color: #198754;
  font-size: 18px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

/* ================= DOTS ================= */
.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pricing-dots span {
  width: 10px;
  height: 10px;
  background: #ccebdc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-dots span.active {
  background: #198754;
  transform: scale(1.3);
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  background: #f8fbff;
  padding: 90px 0;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  border-radius: 50px;
  font-weight: 600;
}

.services-vertical-tabs .nav-link {
  text-align: left;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 12px 15px;
  font-weight: 500;
  color: #333;
  background: #f8f9fa;
}

.services-vertical-tabs .nav-link.active {
  background-color: #198754;
  color: #fff;
}

.service-img {
  max-width: 100%;
  height: auto;
}


.demo-section {
  padding: 80px 0;
}

.demo-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #198754;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.feature-list i {
  color: #198754; /* green */
  font-size: 16px;
  min-width: 20px;
}

/* ================= PRODUCT SECTION ================= */
.product-section {
  padding: 90px 0;
  background: #f8fbff;
}

.product-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.product-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-desc {
  font-size: 15px;
  margin-bottom: 15px;
}

.product-features {
  padding-left: 18px;
  margin-bottom: 15px;
}

.product-features li {
  font-size: 14px;
  margin-bottom: 6px;
}

.product-keywords {
  font-size: 14px;
  margin-bottom: 20px;
}

/* ================= WHATSAPP SECTION ================= */
.whatsapp-section {
  padding: 90px 0;
  background: #f8fbff;
}

.highlight-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.highlight-box i {
  font-size: 36px;
  color: #25d366;
  margin-bottom: 15px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.feature-card ul {
  padding-left: 18px;
}

.feature-card li {
  margin-bottom: 8px;
  font-size: 14px;
}

.who-for h3 {
  margin-bottom: 10px;
}

/* ================= ABOUT US ================= */
.about-us-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-us-section h2 span,
.about-us-section h1 span {
  color: #22c55e;
}

.about-highlights {
  background: #f8fbff;
  padding: 30px;
  border-radius: 18px;
}

.highlight-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.highlight-item i {
  font-size: 24px;
  color: #22c55e;
  margin-top: 4px;
}

.highlight-item h5 {
  margin-bottom: 5px;
  font-size: 16px;
}

.about-card {
  background: #f8fbff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
}

.about-trust p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 15px;
}


/* ================= COMPANY STATS ================= */
.company-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff, #eef7ff);
}

.stat-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  height: 100%;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  color: #475569;
  margin: 0;
}

.feature-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-box {
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-title-link {
  text-decoration: none;
  color: inherit;
}

.feature-title-link:hover {
  color: #0d6efd;
}

.feature-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}



/*Blog Sections*/

section {
  padding: 90px 0;
}

section h1,
section h2,
section h3 {
  font-weight: 700;
}

section p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

section ul {
  padding-left: 20px;
}

section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}



.clinical-hero {
  background: linear-gradient(135deg, #f8fbff, #eef7ff);
}

.clinical-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.clinical-hero h1 span {
  color: #22c55e;
}

.clinical-hero img {
  max-width: 100%;
}


.clinical-problem {
  background: #ffffff;
  text-align: center;
}

.clinical-problem h2 {
  margin-bottom: 15px;
}

.clinical-section {
  background: #ffffff;
}

.clinical-section.alt-bg {
  background: #f8fbff;
}

.clinical-section h2 {
  margin-bottom: 15px;
}

.clinical-section h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}



.clinical-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}


.clinical-integration {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
}

.clinical-integration p {
  color: #cbd5e1;
}



.clinical-compliance {
  background: #ffffff;
}

.clinical-compliance ul {
  max-width: 700px;
  margin: auto;
}


.clinical-cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
}

.clinical-cta h2 {
  margin-bottom: 10px;
}

.clinical-cta p {
  color: #dcfce7;
}


.btn-success {
  background-color: #22c55e;
  border: none;
}

.btn-success:hover {
  background-color: #16a34a;
}


.specialty-box {
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}


.specialties-section {
  padding: 80px 0;
  background: #f8fbff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-title span {
  color: #0d6efd;
}

.section-subtitle {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.specialty-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.specialty-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.specialty-card i {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.specialty-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.integration {
  padding: 80px 0;
  background: #f8fbff;
}

.integration h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.integration-list {
  list-style: none;
  padding-left: 0;
}

.integration-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
}

.integration-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 700;
}



.compliance,
.analytics {
  padding: 80px 0;
}

.alt-bg {
  background: #f8fbff;
}

.compliance-list,
.analytics-list {
  list-style: none;
  padding-left: 0;
}

.compliance-list li,
.analytics-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
}

.compliance-list li::before,
.analytics-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}


.lis-features {
  background: #ffffff;
  padding: 80px 0;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #666;
}

.feature-block {
  background: #f8fbff;
  padding: 30px;
  border-radius: 14px;
  height: 100%;
}

.feature-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-block ul {
  list-style: none;
  padding-left: 0;
}

.feature-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.feature-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.feature-block.highlight {
  background: #eef5ff;
}


.mega-dropdown .dropdown-menu {
  display: none;
}

.mega-dropdown:hover .dropdown-menu {
  display: block;
}


.hero-slider {
  padding: 80px 0;
}

.hero-slider h1 {
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-slider p {
  font-size: 16px;
  color: #555;
}

.carousel-fade .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/*Speciality Card Style*/

.specialty-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  cursor: pointer;
}

.specialty-card:hover {
  transform: translateY(-6px);
}

/* Notes panel */
.specialty-notes {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-align: left;
  overflow-y: auto;
}

.specialty-card:hover .specialty-notes {
  opacity: 1;
  visibility: visible;
}

/* Notes text */
/*.specialty-notes p {
  font-size: 14px;
  margin-bottom: 10px;
}

.specialty-notes strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.specialty-notes ul {
  padding-left: 18px;
  margin: 0;
}

.specialty-notes li {
  font-size: 13px;
  margin-bottom: 4px;
}
*/

/* =============================
   Specialty Notes – Text Polish
   ============================= */

/* Description text */
.specialty-notes p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

/* Section label (Includes / Ideal for) */
.specialty-notes strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* List container */
.specialty-notes ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

/* List items */
.specialty-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.95);
}

/* Medical-style bullet */
.specialty-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1;
  color: #bcdcff;
}