/*!
Theme Name: divinediagnostic
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: divinediagnostic
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

divinediagnostic is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */





   /* =========================================================
   DIVINE HEALTHCARE DIAGNOSTICS — MAIN STYLESHEET
   Modern Medical / Diagnostic Lab Theme
   Blue (#0B5ED7) + Teal (#00B8A9) | Poppins | Glassmorphism
   ========================================================= */

/* ---------- 1. ROOT VARIABLES ---------- */
:root {
  --blue: #0b5ed7;
  --blue-dark: #073e91;
  --blue-light: #e8f1fd;
  --teal: #00b8a9;
  --teal-dark: #00958a;
  --teal-light: #e3fbf8;
  --navy: #0a2540;
  --text-dark: #16233a;
  --text-muted: #5c6b7a;
  --white: #ffffff;
  --off-white: #f6faff;
  --border-soft: #e6edf5;

  --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  --gradient-soft: linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
  --gradient-navy: linear-gradient(135deg, #0a2540 0%, #0b5ed7 100%);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(11, 37, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 94, 215, 0.1);
  --shadow-lg: 0 20px 50px rgba(11, 94, 215, 0.15);
  --shadow-teal: 0 12px 30px rgba(0, 184, 169, 0.18);

  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Poppins', sans-serif;
}

/* ---------- 2. RESET & BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 { font-family: var(--font-main); font-weight: 700; color: var(--navy); line-height: 1.25; }

.highlight { color: var(--teal); position: relative; }

section { position: relative; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 184, 169, 0.3);
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-teal-outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}
.btn-teal-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }

.btn-white { background: var(--white); color: var(--blue); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-sm {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-outline-sm:hover { background: var(--blue); color: #fff; }

/* ---------- 4. SECTION HEADERS ---------- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--gradient-soft);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); font-size: 1.02rem; }

.section-pad { padding: 90px 0; }
.section-alt { background: var(--off-white); }

/* ---------- 5. TOP INFO BAR ---------- */
.topbar {
  background: var(--gradient-navy);
  color: #dfe9f7;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info a { color: #dfe9f7; display: inline-flex; align-items: center; gap: 7px; transition: var(--transition); }
.topbar-info a:hover { color: var(--teal); }
.topbar-tag { display: flex; align-items: center; gap: 7px; color: #9fc0e8; }
.topbar-tag i { color: var(--teal); }

/* ---------- 6. HEADER / NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.96); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 25%;
}
.logo img {
    height: 70px;
    width: auto;
    border-radius: 10px;
	width: 28%;
}

.nav-links {
    display: flex;
    align-items: start;
    gap: 6px;
    margin-left: auto;
}

.nav-link {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 12px; }

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.nav-call-btn .call-icon-wrap {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-call-btn:hover { box-shadow: var(--shadow-teal); transform: translateY(-2px); }

.nav-btn { padding: 11px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-light);
}
.hamburger span { width: 20px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.5);
  z-index: 900;
}
.mobile-overlay.active { display: block; }

/* ---------- 7. HERO SECTION ---------- */
.hero {
  position: relative;
  padding: 60px 0 40px;
  background: linear-gradient(160deg, #eef6ff 0%, #f2fcfb 55%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero .shape { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.35; }
.hero .shape-1 { width: 320px; height: 320px; background: var(--blue-light); top: -100px; left: -100px; }
.hero .shape-2 { width: 260px; height: 260px; background: var(--teal-light); bottom: -80px; right: 10%; }
.hero .shape-3 { width: 160px; height: 160px; background: var(--teal-light); top: 40%; left: 46%; opacity: 0.4; }

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 22px;
}
.hero-badge i { color: var(--teal); }

.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-heading .highlight { display: block; }

.hero-subtext { color: var(--text-muted); font-size: 1.08rem; max-width: 520px; margin-bottom: 26px; }

.hero-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hero-checklist li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-dark); }
.hero-checklist i { color: var(--teal); background: var(--teal-light); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 34px; background: var(--border-soft); }

.hero-image { position: relative; }
.hero-img-wrapper { position: relative; max-width: 460px; margin: 0 auto; }
.hero-img-bg {
  position: absolute;
  inset: 6%;
  background: var(--gradient-primary);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  z-index: 0;
  opacity: 0.9;
}
.main-doctor-img {
  position: relative;
  z-index: 1;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 1/1.05;
  width: 100%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatUpDown 4s ease-in-out infinite;
}
.card-pulse { top: 8%; left: -8%; }
.card-appointment { bottom: 10%; right: -10%; animation-delay: 1.2s; }
.float-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.float-icon.green { background: var(--gradient-primary); background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.float-info { display: flex; flex-direction: column; line-height: 1.2; }
.float-info span { font-size: 0.72rem; color: var(--text-muted); }
.float-info strong { font-size: 0.9rem; color: var(--navy); }

.floating-badge {
  position: absolute;
  top: 42%;
  right: -6%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue);
  z-index: 3;
  animation: spin-slow 14s linear infinite;
}
.floating-badge i { color: var(--teal); font-size: 1.1rem; animation: counter-spin 14s linear infinite; }

@keyframes floatUpDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counter-spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hero-wave { position: relative; line-height: 0; margin-top: -4px; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ---------- 8. QUICK ACTION CARDS ---------- */
.quick-actions { 
  padding: 70px 0 90px;
  overflow: hidden;
 }
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.qa-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.qa-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: var(--gradient-soft);
}
.qa-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}
.qa-card:hover .qa-icon { transform: rotate(-8deg) scale(1.08); }
.qa-card h3 { font-size: 1rem; margin-bottom: 8px; }
.qa-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- 9. POPULAR TESTS ---------- */
.popular-tests { 
  padding: 90px 0; background: var(--off-white);
  overflow: hidden;
  
 }
.tests-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.test-chip {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.test-chip:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); }
.test-chip-icon {
  width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}
.test-chip:hover .test-chip-icon { background: var(--gradient-primary); color: #fff; }
.test-chip h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.tests-cta { text-align: center; }

/* ---------- 10. HEALTH PACKAGES ---------- */
.packages { 
  padding: 90px 0; 
  overflow: hidden;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.package-card:hover .package-img img { transform: scale(1.12); }
.package-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.15) 0%, rgba(10,37,64,0.75) 100%);
}
.package-name {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
}
.package-body { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.package-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.package-price { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.package-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-decoration: line-through; margin-left: 8px; }
.package-actions { display: flex; gap: 8px; }
.package-actions .btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.78rem; }
.packages-cta { text-align: center; }

/* ---------- 11. WHY CHOOSE US ---------- */
.why-choose { 
  padding: 90px 0; background: var(--gradient-soft); border-radius: 0; 
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 30px 16px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.why-card h4 { font-size: 0.9rem; }

/* ---------- 12. HOME SAMPLE COLLECTION (split) ---------- */
.home-collection { 
  padding: 90px 0; 
  overflow: hidden;
}
.hc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hc-image { position: relative; }
.hc-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.hc-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hc-badge i { color: var(--teal); font-size: 1.6rem; }
.hc-badge strong { display: block; font-size: 1.1rem; color: var(--navy); }
.hc-badge span { font-size: 0.75rem; color: var(--text-muted); }

.hc-text .section-badge { margin-bottom: 16px; }
.hc-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.hc-text > p { color: var(--text-muted); margin-bottom: 24px; }
.hc-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.hc-feature { display: flex; align-items: center; gap: 14px; }
.hc-feature-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--gradient-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hc-feature strong { display: block; font-size: 0.92rem; color: var(--navy); }
.hc-feature span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- 13. HOW IT WORKS ---------- */
.how-we-work { 
  padding: 90px 0; background: var(--off-white);
  overflow: hidden;
 }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-light);
}
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; color: var(--text-muted); }
.step-connector { display: none; }

/* ---------- 14. STATS COUNTER ---------- */
.stats-section {
  padding: 60px 0;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.stat-box { text-align: center; color: #fff; }
.stat-box .stat-num { font-size: 2.6rem; font-weight: 800; color: #fff; }
.stat-box .stat-label { color: #b9d3ef; font-size: 0.9rem; margin-top: 6px; }

/* ---------- 15. TESTIMONIALS ---------- */
.testimonials { 
  padding: 90px 0;
  overflow: hidden;
 }
.testimonial-slider-wrapper { position: relative; max-width: 780px; margin: 0 auto; }
.testimonial-slider { position: relative; min-height: 260px; }
.testimonial-slide { display: none; animation: fadeIn 0.5s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured { background: var(--gradient-soft); }
.testimonial-quote { font-size: 1.8rem; color: var(--teal); opacity: 0.4; margin-bottom: 14px; }
.testimonial-text { font-size: 1.05rem; color: var(--text-dark); font-style: italic; margin-bottom: 20px; }
.testimonial-stars { color: #ffb100; margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--teal-light); }
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

.tslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 5;
}
.tslider-btn:hover { background: var(--gradient-primary); color: #fff; }
.tslider-prev { left: -60px; }
.tslider-next { right: -60px; }

.tslider-footer { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.tslider-dots { display: flex; gap: 8px; }
.tslider-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-soft); transition: var(--transition); }
.tslider-dot.active { background: var(--teal); width: 26px; border-radius: 6px; }
.tslider-counter { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.tes_image { display: none; }

/* ---------- 16. BLOG ---------- */
.blog2 { 
  padding: 90px 0; background: var(--off-white);
	position:relative;

 }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-img-wrapper { position: relative; height: 160px; overflow: hidden; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.1); }
.blog-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient-primary); color: #fff;
  font-size: 0.68rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.blog-content { padding: 20px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-content h3 { font-size: 0.98rem; margin-bottom: 8px; line-height: 1.4; }
.blog-content p { display: none; }
.blog-link { color: var(--blue); font-weight: 600; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-link:hover { gap: 10px; color: var(--teal-dark); }
.blog-cta { text-align: center; margin-top: 40px; }

/* ---------- 17. CONTACT ---------- */
.contact { 
  padding: 90px 0;
  overflow: hidden; 
}
.contact-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
}
.contact-info h3 { color: #fff; margin-bottom: 24px; font-size: 1.3rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: #c4d6ea; margin: 0; }
.contact-social { display: flex; gap: 10px; margin: 24px 0; }
.contact-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--teal); transform: translateY(-3px); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 10px; }
.contact-map iframe { width: 100%; height: 200px; border: 0; display: block; }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h3 { margin-bottom: 22px; font-size: 1.3rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group:nth-child(4), .form-group:nth-child(5) { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}
.input-wrapper textarea { resize: vertical; min-height: 90px; }
.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--teal-light);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  grid-column: 1 / -1;
}
.form-success.show { display: flex; }
@keyframes shake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-6px);} 75%{transform:translateX(6px);} }

/* ---------- 18. FOOTER ---------- */
.footer { background: var(--navy); color: #c4d6ea; }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { height: 46px; border-radius: 8px; background: #fff; padding: 4px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; color: #a9c1dc; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: #fff;
}
.footer-social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: #a9c1dc; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal); gap: 12px; }
.footer-col ul li a i { font-size: 0.65rem; color: var(--teal); }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 16px; align-items: flex-start; font-size: 0.85rem; }
.footer-contact-list li i { color: var(--teal); margin-top: 3px; }
.footer-newsletter p { font-size: 0.85rem; color: #a9c1dc; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 0; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.newsletter-form input::placeholder { color: #93aecb; }
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,0.14); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #a9c1dc; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ---------- 19. FLOATING BUTTONS ---------- */
.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 500;
  transition: var(--transition);
}
.whatsapp-float i { font-size: 1.2rem; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .quick-actions-grid { grid-template-columns: repeat(3, 1fr); }
  .tests-grid { grid-template-columns: repeat(4, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 992px) {





  .nav-actions { flex-direction: column; align-items: flex-start; margin-left: 0; margin-top: 14px; width: 100%; }
  .nav-call-btn { width: 100%; justify-content: center; }
  .nav-btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .topbar-tag { display: none; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtext { margin-left: auto; margin-right: auto; }
  .hero-checklist { align-items: center; }
  .hero-buttons, .hero-stats { justify-content: center; }
  .hero-image { max-width: 380px; margin: 0 auto; }

  .hc-container { grid-template-columns: 1fr; }
  .hc-image { max-width: 460px; margin: 0 auto; }

  .contact-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .tests-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .form-group:nth-child(4), .form-group:nth-child(5) { grid-column: auto; }
  .tslider-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info span:last-child { display: none; }
}

@media (max-width: 480px) {
  .quick-actions-grid { grid-template-columns: 1fr 1fr; }
  .tests-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: 0.72rem; }
  .floating-badge { display: none; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 13px; }
}



@media (max-width:991px){

.nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    transition: right .4s ease;
    z-index: 9999;
}

.nav-links.active{
    right: 0;
    
}

.mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        /* z-index: 9998; */
    }


.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}



.navbar {
   
    backdrop-filter: unset;
   
}

.contact-container {
    display: block;
   
    gap: 40px;
}

.topbar-info {
    display: block;
   
}

.hero-heading {
    font-size: clamp(2.4rem, 4vw, 2.4rem);
    margin-bottom: 21px;
    letter-spacing: -0.5px;
}
	
	
	.nav-links ul li {
    list-style: none;
    margin-top: 18px !important;
}
	
	
	
	.logo img {
    height: auto;
    width: auto;
    border-radius: 10px;
    width: 100%;
}
	
	

	.innerBannerSection .head {
    position: absolute;
    top: 124px;
}
	


	.innerBannerSection {
    width: 100%;
    position: relative;
    height: 285px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
	


}




@media (max-width:450px){

.newsletter-form {
    display: contents;
    
}
	

	
	
	

}









/* InnerPage  */
.innerPageSection{
    padding: 0px 0 0 0;
    position: relative;
}

.innerBannerSection {
    width: 100%;
    position: relative;
    height: 385px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.innerBannerSection:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: rgb(0 0 0 / 30%);
}
.innerbanner{
    height: 368px;
    background-size: cover;
}
.innerBannerSection h1{
    font-size: 32px !important;
    letter-spacing: 2px;
    color:#fff;
    font-weight: bold;
}
.innerBannerSection .head{
    position: absolute;
    top: 227px;
}
.innerBannerSection .head h3{
    color: #ff7700;
    font-size: 30px;
}
.innerBannerSection .innerBannerImg{
    background-size: cover !important;
    height: 100%;
    /*    background-attachment: fixed !important;*/
    position: relative;
}
.innerBannerSection .innerBannerImg:before{
    position: absolute;
    content:'';
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.3);
}
.InnerBannerHeading{
    position: absolute;
    top: -60px;
    color: #fff;
}
.InnerBannerHeading h1{
    font-size: 36px !important;
}
.breadcrumb span {
    font-weight: normal;
    color: #fff;
}
.breadcrumb span a {
    font-weight: normal;
    color: #fff;
}
.breadcrumb {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    background:#ffcc2a;
    color: #000;
    margin-bottom: 0px;
    border-radius: 0;
    border-bottom: solid 1px #ccc;
    padding: 5px 10px;
}
.breadcrumb_last{
    font-weight: 600 !important;
}

.table a{
    color: blue;
}
.table a:hover{
      color:#ffcc2a ;
}
/*innerPageSection */






