
/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pagination .page-link {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    padding: 8px 14px;
    text-decoration: none;
     border-radius: 4px;
    transition: background-color 0.2s;
}

.pagination .page-link:hover {
    background-color: #0056b3; color: white;
}

.pagination .page-link.active {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}


    :root {
      --bg-surface: #f1f5f9;
      --card-bg: #ffffff;
      --text-main: #091e42;
      --text-sub: #475569;
      --primary-blue: #0099cc;
      --primary-dark: #0369a1;
      --accent-teal: #0d9488;
      --accent-gold: #f59e0b;
      --border-light: #e2e8f0;
      --font-head:   font-family: 'Inter'; 
       --radius-lg: 18px;
      --radius-md: 10px;
      --shadow-premium: 0 20px 40px -15px rgba(2, 132, 199, 0.07);
    }

 .footer-col .each-widget p{text-align:left}

    body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #333;
            background-color: #f1f5f9;
    }

 
    /* FADE UP KEYFRAMES */
    @keyframes fadeUpText {
      0% {
        opacity: 0;
        transform: translateY(35px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      animation: fadeUpText 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      opacity: 0;
    }

    .delay-1 { animation-delay: 0.15s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.45s; }

    /* HERO HEADER WITH BACKGROUND IMAGE */
.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(2, 22, 43, 0.88) 0%, rgba(3, 105, 161, 0.85) 100%), url(https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1920&auto=format&fit=crop);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 180px 0 100px;
    border-radius: 0px 0px 70px 70px;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal), var(--accent-gold));
}
    .breadcrumb {
      display: flex;
      gap: 10px;
      font-size: 0.85rem;
      color: #fff;
      margin-bottom: 16px;
      list-style: none;
      font-weight: 500;
    }
    .breadcrumb li{display:inline}
    .breadcrumb a { color: #fcfcfc; padding:0px 5px}
    .breadcrumb a:hover { color: #fff; }

   .hero-title {
    font-family: 'Instrument Serif', ui-serif, Georgia, serif;
    font-size: 4.1rem;
    line-height: 1.2;
    margin-bottom: 0;
    font-style: italic;
    color: #f2c41e;
}

    /* MAIN PAGE GRID */
    .page-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      margin-top: -40px;
      padding-bottom: 70px;
      position: relative;
      z-index: 10;
    }
.page-grid1{
   
      margin-top: -40px;
      padding-bottom: 70px;
      position: relative;
      z-index: 10;
    }
    /* LEFT CONTENT AREA */
    .main-content {
      background: var(--card-bg);
      padding: 15px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-premium);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .section-block { margin-bottom: 40px; }

    .section-title {
      font-family: var(--font-head);
      font-size: 1.9rem;
      color: var(--text-main);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;    font-family: 'Instrument Serif', ui-serif, Georgia, serif;

    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--primary-blue);
      border-radius: 2px;
    }

    .section-text {
      color: var(--text-sub);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 18px;
    }

    /* IMAGE FEATURE CARDS */
    .image-card {
      margin: 30px 0;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-light);
      box-shadow: 0 10px 25px -10px rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .image-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 35px -10px rgba(2, 132, 199, 0.15);
    }

    .image-card img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }

    .image-caption {
      padding: 14px 20px;
      background: #f8fafc;
      color: var(--text-sub);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid var(--border-light);
    }

    /* STATS BADGES WITH RIGHT BORDER ACCENT */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin: 35px 0;
    }

    .stat-box {
      background: #f0f9ff;
      border: 1px solid #bae6fd;
      border-left: 4px solid var(--primary-blue); /* RIGHT SIDE BORDER */
      padding: 22px 16px;
      border-radius: var(--radius-md);
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-box:hover {
      background: #e0f2fe;
      border-right-color: var(--accent-teal);
      transform: translateY(-3px);
    }

    .stat-num {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-blue);
    }

    .stat-lbl {
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      margin-top: 4px;
    }

    /* CASE STUDY BANNER */
    .case-banner {
      background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
      border: 1px solid #93c5fd;
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      margin: 30px 0;
    }

    .btn-case {
      background: var(--primary-blue);
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .btn-case:hover {
      background: var(--primary-dark);
      transform: translateX(4px);
    }

    /* CONTACT BOX */
    .contact-card {
      background: #0f172a;
      color: #fff;
      padding: 28px;
      border-radius: var(--radius-md);
      margin-top: 35px;
    }

    .contact-card a { color: var(--accent-gold); font-weight: 600; }

    /* RIGHT SIDEBAR WITH UNIFORM TOP ACCENT BORDERS */
    .sidebar-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .sidebar-card {
      background: var(--card-bg);
      padding: 20px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-premium);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-top: 4px solid #0099cc; /* TOP ACCENT BORDER FOR ALL SIDEBAR CARDS */
      transition: all 0.3s ease;
    }

    /* DOCTOR TEXT CARD */
    .doc-info-card {
      text-align: center;
    }

.doc-name {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 2px;
    font-family: 'Instrument Serif', ui-serif, Georgia, serif;
    text-align: center;
    font-weight: 500; line-height:35px;margin-bottom:20px
}
.doc-name1 {
    font-family: var(--font-head);
    font-size: 35px;
    color: var(--secondary);    margin-bottom: 2px;
    font-family: 'Instrument Serif', ui-serif, Georgia, serif;
    text-align: center;
    font-weight: 500; line-height:45px;margin:40px 20px; font-style:italic
}

    .doc-tag {
      color: var(--accent-teal);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }

    /* FORM STYLING */
    .form-title {
         font-family: 'Instrument Serif', ui-serif, Georgia, serif;

      font-size: 1.4rem;
      color: var(--text-main);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-sub {
      font-size: 0.88rem;
      color: var(--text-sub);
      margin-bottom: 22px;
    }

    .input-group { margin-bottom: 25px; }

    .input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.input-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    border: 1px solid #78dced;
    border-radius: 8px;
    background: #f8fafc;
    outline: none;
    transition: all 0.3s ease;
    margin-top: 5px;
}
    .input-control:focus {
      background: #ffffff;
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
    }

    textarea.input-control { resize: vertical; min-height: 80px; }

    .btn-submit-form {
      width: 100%;
       background-color: #0099cc;
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.35);
      transition: all 0.3s ease;
    }

    .btn-submit-form:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.5);
    }

    /* SPECS LIST */
    .specs-list { list-style: none; }
    .specs-list li {
      padding: 5px 0;
     }
    .specs-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-sub);
      transition: all 0.2s ease;
    }
	 .specs-list li a::before{
  content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900; /* Solid icons ke liye zaroori */
    position: relative;
    right: 0px;
    top: 50%;
     color: #0099cc;
    font-size: 13px;text-align:left
}
    .specs-list a:hover {
      color: var(--primary-blue);
      transform: translateX(4px);
    }

    /* SOCIAL MEDIA BOX */
    .social-box-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .social-box-sub {
      font-size: 0.85rem;
      color: var(--text-sub);
      margin-bottom: 16px;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .social-link {
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

    .social-link.fb { background: #1877f2; }
    .social-link.yt { background: #ff0000; }
    .social-link.li { background: #0a66c2; }
    .social-link.wa { background: #25d366; }

    /* FOOTER */
    footer {
      background: #031b33;
      color: #94a3b8;
      padding: 35px 0;
      text-align: center;
      font-size: 0.9rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    @media (max-width: 992px) {
      .page-grid { grid-template-columns: 1fr; margin-top: 20px; }
      .stats-row { grid-template-columns: 1fr; }
      .hero-title { font-size: 2.2rem; }
    }
 /* ==========================================================================
   HEADER TOP BAR & TWO-LINE LAYOUT STYLES
   ========================================================================== */
.top-review-bar {
  background: #eeeeee;
  border-bottom: 1px solid #e9ecef;
  padding: 6px 0;
}

.top-review-bar .widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-review-bar a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.top-review-bar img {
  vertical-align: middle;
}

/* Header Outer Container */
.site-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 0px solid #eee;
}

/* Row 1: Brand & Action Buttons */
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.brand img {
   height: auto;
  display: block;
}

/* Row 2: Navigation Bar Container */
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  background: linear-gradient(120deg, #122346, #1d3464);
}

/* Primary Navigation Styles */
.primary-nav {
  width: 100%;
}

.primary-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.primary-nav .nav-list > li {
  position: relative;
}

.primary-nav .nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 4px;
  transition: all 0.25s ease-in-out;
}

/* DESKTOP HOVER & ACTIVE STATE EFFECT */
.primary-nav .nav-list > li:hover > a,
.primary-nav .nav-list > li.active > a {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
 }

/* DROPDOWN ACTIVE STATE */
.primary-nav .dropdown li.active > a {
  background-color: #eef6ff;
  color: #0056b3;
  border-left-color: #0056b3;
  font-weight: 700;
}

/* DESKTOP DROPDOWN STYLES */
.primary-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  list-style: none;
  z-index: 999;
  border-top: 3px solid #64b5f6;
  scrollbar-width: thin;
  scrollbar-color: #122346 #f1f4f9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.primary-nav .nav-list li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .dropdown li {
  width: 100%;
}

.primary-nav .dropdown a {
  padding: 11px 18px;
  font-size: 0.88rem;
  color: #2c3e50;
  display: block;
  border-bottom: 1px solid #f4f6f8;
  border-left: 3px solid transparent;
  transition: all 0.2s ease-in-out;
}

.primary-nav .dropdown a:hover {
  background-color: #eef6ff;
  color: #0056b3;
  border-left-color: #0056b3;
  padding-left: 23px;
}

/* ==========================================================================
   MOBILE SIDE PANEL & ACCORDION STYLES
   ========================================================================== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: linear-gradient(120deg, #122346, #1d3464);
  z-index: 1100;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}

.mobile-nav-header strong {
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.close-mobile-nav {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.close-mobile-nav:hover {
  color: #64b5f6;
}

.mobile-nav-body {
  padding: 10px 0;
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-nav-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-body li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-body a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all 0.25s ease-in-out;
}

.mobile-nav-body li.active > a,
.mobile-nav-body a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #64b5f6;
  border-left-color: #64b5f6;
}

.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  list-style: none;
  padding: 0;
  transition: max-height 0.35s ease-out;
}

.mobile-sub-menu.open {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.mobile-sub-menu a {
  font-size: 0.88rem;
  color: #d1d5db;
  padding: 10px 20px 10px 25px;
}

.mobile-sub-menu li.active > a,
.mobile-sub-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #64b5f6;
  padding-left:25px;
}

.mobile-dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active i {
  transform: rotate(180deg);
  color: #64b5f6;
}

/* ==========================================================================
   RIGHT SIDEBAR LIST STYLES (ICON + BOTTOM BORDER)
   ========================================================================== */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  border-bottom: 1px solid #97bbde;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease-in-out;
}

/* Font Awesome Chevron Icon using CSS ::before */
.specs-list li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: #0056b3;
  transition: transform 0.25s ease-in-out;
}

.specs-list li a:hover {
  background-color: #eef6ff;
  color: #0056b3;
  padding-left: 16px;
}

.specs-list li a:hover::before {
  transform: translateX(3px);
}

.specs-list li.active > a {
  font-weight: 700;
  color: #0056b3;
  background-color: #eef6ff;
  border-left: 4px solid #0056b3;
  padding-left: 14px;
}

/* ==========================================================================
   FOOTER LINKS STYLING (ICONS & BOTTOM BORDER ADDED)
   ========================================================================== */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-content p{ color:#fff !important; text-align:justify}
.footer-col ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Subtle Bottom Border */
}

.footer-col ul li:last-child {
  border-bottom: none;
}

.footer-col ul li a {
      display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.25s ease-in-out;
}

/* Font Awesome Icon for Footer Links */
.footer-col ul li a::before {
  content: "\f105"; /* Chevron Right Icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: #64b5f6; /* Accent color */
  transition: transform 0.25s ease-in-out;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  transform: translateX(3px);
}

/* ==========================================================================
   HAMBURGER BUTTON & HEADER ACTIONS
   ========================================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #122346;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIXES
   ========================================================================== */
@media screen and (max-width: 991px) {
  .header-nav-row {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .brand img {
   }

  .header-actions .btn {
    padding: 6px 10px;
    font-size: 0.78rem;
  }
}
  .each-widget strong{color:#FFFF00}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .main-content, .sidebar-wrapper {
   }

  .page-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .each-widget strong{color:#FFFF00}
  
  br{display:none}
.footer-content1{    padding: 30px 0 20px;
    border-radius:20px;
    background-color: #0099cc;
    color: white;
    margin: 30px auto 0px auto;
    border: solid 1px #0099cc;
    width: auto;}
  .footer-grid1 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;padding:0px
  }
 .hero-wrapper{    border-radius: 0px 0px 20px 20px;padding:70px 0px}
.footer-content{ border-radius:20px;    margin: 0px 15px;padding:20px 0px}
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  @media screen and (max-width: 480px) {
    .brand img {
     }
    .header-actions .btn-ghost {
      display: none;
    }
  }

  .top-review-bar {
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
  }

  .top-review-bar .widget {
    display: inline-flex;
    justify-content: flex-start;
    animation: topBarScroll 12s linear infinite;
    width: max-content;
  }

  .top-review-bar .widget:hover {
    animation-play-state: paused;
  }
}

@keyframes topBarScroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
     /* Alternating List Layout */
        .awards-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .award-row {
            display: flex;
            align-items: center;
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .award-row:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(2, 132, 199, 0.3);
        }

        /* Directional Alternation */
        .award-row.image-left {
            flex-direction: row;
        }

        .award-row.image-right {
            flex-direction: row-reverse;
        }

        /* Image Box */
        .award-img-box {
            position: relative;
            width: 55%;
            min-height: 230px;
            background: #0f172a;
            overflow: hidden;
            flex-shrink: 0;
        }

        .award-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .award-row:hover .award-img-box img {
            transform: scale(1.06);
        }

        .award-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .award-img-box:hover .award-overlay {
            opacity: 1;
        }

        .zoom-btn {
            background: white;
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }

        .zoom-btn:hover {
            transform: scale(1.1);
            background: var(--secondary);
            color: white;
        }

        .award-tag {
            position: absolute;
            top: 16px;
            left: 16px;
    background: #0284c7;            backdrop-filter: blur(4px);
            color: white;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.15);
            z-index: 2;
        }

        /* Content Box */
        .award-info-box {
            padding:50px 30px;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .award-info-box h3 {
           font-family: 'Instrument Serif', ui-serif, Georgia, serif;
            font-size: 28px;
            color:#000;
            line-height: 1.35;
            margin-bottom: 20px; font-weight:500
        }

        .award-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 20px;
        }

        .award-org {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
 color: var(--secondary);            font-weight: 500;
        }

        .award-org i {
            color: var(--accent);
        }

        .verified-badge {
            font-size: 13px;
            color: var(--secondary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* Scroll Animation Classes (Fade In Left / Right) */
        .fade-left {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-right {
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-left.appear, .fade-right.appear {
            opacity: 1;
            transform: translateX(0);
        }
.hero-wrapper p{ color:#FFFFFF}
        /* Responsive Design */
        @media (max-width: 768px) {
		.tile .body {
    padding: 20px 0px 0px 0px !important}
   
		.contact-strip > div{margin:10px 0px !important}
		.card-grid--4 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important; 
}
            .award-row, .award-row.image-left, .award-row.image-right {
                flex-direction: column !important;
            }
            .award-img-box, .award-info-box {
                width: 100% !important;
            }
            .award-img-box {
                height: 240px;
            }
            .award-info-box {
                padding: 25px;
            }
            .section-header h2 {
                font-size: 30px;
            }
        }
		  /* Lightbox Popup Modal Styling */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-modal.active {
            display: flex;
            opacity: 1;
        }

        .image-modal-content {
            position: relative;
            max-width: 900px;
            max-height: 85vh;
            text-align: center;
        }

        .image-modal-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            object-fit: contain;
        }

        .close-modal {
            position: absolute;
            top: -45px;
            right: 0;
            background: white;
            color: #0f172a;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: background 0.2s, color 0.2s;
        }

        .close-modal:hover {
            background: var(--secondary);
            color: white;
        }
/* ---- Happy patients carousel ---- */
.v2-carousel{position:relative;margin:28px 0 8px}
.v2-carousel__viewport{overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none;border-radius:16px}
.v2-carousel__viewport::-webkit-scrollbar{display:none}
.v2-carousel__track{display:flex;gap:16px;margin:0;padding:0;list-style:none}
.v2-carousel__track > li{flex:0 0 calc((100% - 32px)/3);scroll-snap-align:start}
.v2-carousel__track img{width:100%;height:230px;object-fit:cover;display:block;border-radius:14px;
  border:1px solid var(--line,rgba(255,255,255,.12));background:rgba(255,255,255,.04);
  transition:transform .45s ease, box-shadow .45s ease}
.v2-carousel__track img:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.45)}
.v2-carousel__nav{position:absolute;top:calc(50% - 22px);width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;z-index:3;
  background:rgba(10,20,32,.82);color:#0099cc;border:1px solid rgba(232,194,122,.5);
  backdrop-filter:blur(6px);transition:background .25s ease,transform .25s ease}
.v2-carousel__nav:hover{background:#0099cc;color:#0a1420;transform:scale(1.06)}
.v2-carousel__nav:focus-visible{outline:3px solid #0099cc;outline-offset:3px}
.v2-carousel__nav[disabled]{opacity:.35;cursor:default;transform:none}
.v2-carousel__nav--prev{left:-14px}
.v2-carousel__nav--next{right:-14px}
.v2-carousel__nav svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2.2}
.v2-carousel__dots{display:flex;gap:8px;justify-content:center;margin-top:18px;padding:0;list-style:none;flex-wrap:wrap}
.v2-carousel__dots button{width:9px;height:9px;padding:0;border-radius:50%;cursor:pointer;
  border:1px solid #0099cc;background:transparent;transition:all .25s ease}
.v2-carousel__dots button[aria-current="true"]{background:#0099cc;width:26px;border-radius:6px}
.v2-carousel__dots button:focus-visible{outline:3px solid #0099cc;outline-offset:3px}
.v2-carousel__live{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
@media (max-width:900px){.v2-carousel__track > li{flex:0 0 calc((100% - 16px)/2)}
  .v2-carousel__nav--prev{left:4px}.v2-carousel__nav--next{right:4px}}
@media (max-width:600px){.v2-carousel__track > li{flex:0 0 100%}
  .v2-carousel__track img{height:250px}}
@media (prefers-reduced-motion:reduce){.v2-carousel__viewport{scroll-behavior:auto}
  .v2-carousel__track img{transition:none}}

/*
.v2-hl{position:relative;padding:26px 28px;border-radius:18px;background:linear-gradient(135deg,#333 0%,#123049 100%);color:#eef4fb;box-shadow:0 24px 60px rgba(9,22,44,.18)}
.v2-hl p{color:#dbe6f2;font-size:16.5px;margin:0}
.v2-hl em{font-family:var(--serif);font-style:italic;color:#0099cc}
.v2-stats{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:25px;padding:0;margin:26px 0}
.v2-stats li{background:#fff;border:1px solid rgba(9,22,44,.09);border-radius:14px;padding:18px 16px;text-align:center;transition:transform .25s ease,box-shadow .25s ease}
.v2-stats li:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(9,22,44,.12)}
.v2-stats b{display:block;font-family:var(--serif);font-size:30px;line-height:1;color:#333}
.v2-stats span{display:block;margin-top:8px;font-size:12.5px;letter-spacing:.06em;text-transform:uppercase;color:#333}
.v2-cards{list-style:none;padding:0;margin:22px 0;display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.v2-cards li{background:#fff;border:1px solid rgba(9,22,44,.09);border-left:3px solid #0099cc;border-radius:12px;padding:18px 20px;transition:transform .25s ease,box-shadow .25s ease}
.v2-cards li:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(9,22,44,.1)}
.v2-cards h3{margin:0 0 6px;font-size:16px;color:#333}
.v2-cards p{margin:0;font-size:15pxcolor:#333}
.v2-steps{list-style:none;counter-reset:st;padding:0;margin:22px 0;display:grid;gap:25px}
.v2-steps li{counter-increment:st;position:relative;padding:20px 22px 20px 74px;background:#fff;border:1px solid rgba(9,22,44,.09);border-radius:14px;transition:transform .25s ease,box-shadow .25s ease}
.v2-steps li:hover{transform:translateX(4px);box-shadow:0 16px 34px rgba(9,22,44,.1)}
.v2-steps li::before{content:counter(st,decimal-leading-zero);position:absolute;left:20px;top:18px;font-family:var(--serif);font-size:26px;color:#0099cc}
 .v2-timeline{list-style:none;margin:22px 0;padding:0 0 0 26px;border-left:2px solid rgba(9,22,44,.12)}
.v2-timeline li{position:relative;padding:0 0 26px 8px}
.v2-timeline li::before{content:"";position:absolute;left:-34px;top:6px;width:12px;height:12px;border-radius:50%;background:#0099cc;box-shadow:0 0 0 4px rgba(201,162,95,.18)}
.v2-timeline h3{margin:0 0 4px;font-size:16px;color:#333}
.v2-timeline p{margin:0;font-size:15pxcolor:#333}
.v2-pills{list-style:none;display:flex;flex-wrap:wrap;gap:10px;padding:0;margin:20px 0}
.v2-pills li{background:rgba(13,26,46,.05);border:1px solid rgba(9,22,44,.1);border-radius:999px;padding:9px 15px;font-size:13.5px;color:#243244}
.v2-pills li:hover{background:#333;color:#fff;border-color:#333}
.v2-quote{margin:26px 0;padding:22px 26px;border-left:3px solid #0099cc;background: #f4f8fb;border-radius:0 14px 14px 0}
.v2-quote p{margin:0;font-family:var(--serif);font-size:21px;line-height:1.45;color:#333}
.v2-section{margin:46px 0 0}
.v2-section > h2{font-family:var(--serif);font-size:32px;line-height:1.15;color:#333;margin:0 0 8px}
.v2-section > h2 em{font-style:italic;color:#0099cc}
.v2-kicker{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:#0099cc;margin:0 0 10px;font-weight:600}
.v2-figure{margin:26px 0;border-radius:18px;overflow:hidden;box-shadow:0 24px 60px rgba(9,22,44,.16)}
.v2-figure img{display:block;width:100%;height:auto}
.v2-figure figcaption{background:#333;color:#c8d5e4;font-size:13px;padding:12px 18px}
@media (max-width:900px){
 .v2-stats{grid-template-columns:repeat(2,1fr)}
 .v2-cards{grid-template-columns:1fr}
 .v2-section > h2{font-size:26px}
}


 ---- block from pages-v3/cabg-with-valve-replacement.html (4956) ---- */
.lead-paragraph{ color:#333333;margin-top:20px}
.v2-hl{position:relative;padding:26px 28px;border-radius:18px;background:linear-gradient(135deg,#333 0%,#123049 100%);color:#eef4fb;box-shadow:0 24px 60px rgba(9,22,44,.18)}
.v2-hl p{color:#fff;font-size:16.5px;margin:0}
.v2-hl em{font-family:var(--serif);font-style:italic;color:#f2c41e !important}
.v2-stats{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:25px;padding:0;margin:26px 0}
.v2-stats li{    background: #f4f8fb;
    border: 1px solid #0284c7;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    color: #0284c7;}
.v2-stats li:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(9,22,44,.12)}
.v2-stats b{display:block;font-family:var(--serif);font-size:30px;line-height:1;color:#333;font-weight: 600;}
.v2-stats span {
    display: block;
    margin-top: 15px;
    font-size: 12.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #007298;
    font-weight: 600;
}

ul.bullet li {
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
    display: block;
}
ul.bullet li::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0099cc;
    transition: transform 0.25s ease-in-out;
    padding-right: 7px;
}


.v2-cards article{background:#fff;border:1px solid #0099cc;border-left:3px solid #0099cc;border-radius:12px;padding:18px 20px;transition:transform .25s ease,box-shadow .25s ease}
.v2-cards{list-style:none;padding:0;margin:22px 0;display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.v2-cards li{background:#fff;border:1px solid rgba(9,22,44,.09);border-left:3px solid #0099cc;border-radius:12px;padding:18px 20px;transition:transform .25s ease,box-shadow .25s ease}
.v2-cards li:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(9,22,44,.1)}
.v2-cards h3{margin:0 0 6px;font-size:16px;color:#333}
.v2-cards p{margin:0;font-size:15px;color:#333;    line-height: 20px;}
.v2-steps{list-style:none;counter-reset:st;padding:0;margin:22px 0;display:grid;gap:25px}
.v2-steps li{counter-increment:st;position:relative;padding:20px 20px 20px 70px;background:#fff;border:1px solid #0284c7;border-radius:14px;transition:transform .25s ease,box-shadow .25s ease}
.v2-steps li:hover{transform:translateX(4px);box-shadow:0 16px 34px rgba(9,22,44,.1)}
.v2-steps li::before{

    content: counter(st, decimal-leading-zero);
    position: absolute;
    left: 15px;
    top: 18px;
    font-family: var(--serif);
    font-size: 15px;
    color: #0099cc;
    background: #000;
    padding: 8px 9px;
    color: #fff;
    background: #0284c7;
    border-radius: 20px;
    font-family: var(--mono);

}
.v2-steps h3{margin:0 0 6px;font-size:16.5px;color:#000}
.v2-steps p{margin:0;font-size:15px;color:#333;    line-height: 20px;}
.v2-timeline{list-style:none;margin:22px 0;padding:0 0 0 26px;border-left:2px solid rgba(9,22,44,.12)}
.v2-timeline li{position:relative;padding:0 0 26px 8px}
.v2-timeline li::before{content:"";position:absolute;left:-34px;top:6px;width:12px;height:12px;border-radius:50%;background:#0099cc;box-shadow:0 0 0 4px rgba(201,162,95,.18)}
.v2-timeline h3{margin:0 0 4px;font-size:16px;color:#333}
.v2-timeline p{margin:0;font-size:15px;color:#333}
.v2-pills{list-style:none;display:flex;flex-wrap:wrap;gap:10px;padding:0;margin:20px 0}
.v2-pills li {
    background: #f4f8fb!important; 
    border: 1px solid #78dced !important;    border-radius: 999px;
    padding: 14px 15px  !important;                                            
    font-size: 15px;
    color: #333 !important;  
}.v2-pills li:hover{background:#333;color:#fff;border-color:#333}
.v2-quote{margin:26px 0;padding:22px 26px;border-left:3px solid #0099cc;background: #f4f8fb;border-radius:0 14px 14px 0}
h3 {margin-bottom:15px}

.v2-quote p{margin:0;font-family:var(--serif);font-size:21px;line-height:1.45;color:#333}
.v2-section{margin:46px 0 0}
.v2-section > h2{font-family:var(--serif);font-size:32px;line-height:1.15;color:#333;margin:0 0 8px; font-weight:500}
.v2-section > h2 em{font-style:italic;color:#0099cc}
.v2-kicker{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:#0099cc;margin:0 0 10px;font-weight:600}
.v2-figure{margin:26px 0;border-radius:18px;overflow:hidden;box-shadow:0 24px 60px rgba(9,22,44,.16)}
.v2-figure img{display:block;width:100%;height:auto}
.v2-figure figcaption{background:#000;color:#fff;font-size:15px;padding:15px 18px}
@media (max-width:900px){
 .v2-stats{grid-template-columns:repeat(2,1fr)}
 .v2-cards{grid-template-columns:1fr}
 .v2-section > h2{font-size:26px}
}

.v2-hl strong{color:#f2c41e !important}
.v2-hl a{color:#f2c41e !important}
.v2-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:26px 0}
.v2-gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:14px;background:#333;box-shadow:0 14px 34px rgba(9,22,44,.14);transition:transform .35s ease}
.v2-gallery img:hover{transform:translateY(-4px) scale(1.02)}
.v2-costgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:26px 0;list-style:none;padding:0}
.v2-costgrid li{background:linear-gradient(160deg,#333,#132844);color:#eaf1f8;border-radius:18px;padding:22px}
.v2-costgrid b{display:block;font-size:26px;color:#0099cc;font-family:'Instrument Serif',Georgia,serif}
.v2-costgrid span{display:block;font-size:13px;color:#b9c8da;margin-top:6px;line-height:1.5}
.v2-linklist{list-style:none;padding:0;margin:20px 0;display:grid;gap:10px}
.v2-linklist a{display:block;padding:14px 18px;border:1px solid rgba(13,26,46,.12);border-radius:14px;font-size:14px;word-break:break-word;text-decoration:none;color:#123;background:#f6f9fc}
.v2-linklist a:hover,.v2-linklist a:focus-visible{background:#333;color:#fff}
@media (max-width:900px){.v2-gallery{grid-template-columns:repeat(2,1fr)}.v2-costgrid{grid-template-columns:1fr}}


